LayoutTableRow.cpp 312 B

12345678910111213141516
  1. #include <LibHTML/DOM/Element.h>
  2. #include <LibHTML/Layout/LayoutTableRow.h>
  3. LayoutTableRow::LayoutTableRow(const Element& element, NonnullRefPtr<StyleProperties> style)
  4. : LayoutBox(&element, move(style))
  5. {
  6. }
  7. LayoutTableRow::~LayoutTableRow()
  8. {
  9. }
  10. void LayoutTableRow::layout()
  11. {
  12. LayoutBox::layout();
  13. }