LayoutInline.cpp 228 B

1234567891011
  1. #include <LibHTML/DOM/Element.h>
  2. #include <LibHTML/Layout/LayoutInline.h>
  3. LayoutInline::LayoutInline(const Node& node, const StyledNode& styled_node)
  4. : LayoutNode(&node, &styled_node)
  5. {
  6. }
  7. LayoutInline::~LayoutInline()
  8. {
  9. }