LayoutTable.cpp 298 B

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