LayoutTableCell.cpp 259 B

1234567891011
  1. #include <LibHTML/DOM/Element.h>
  2. #include <LibHTML/Layout/LayoutTableCell.h>
  3. LayoutTableCell::LayoutTableCell(const Element& element, NonnullRefPtr<StyleProperties> style)
  4. : LayoutBlock(&element, move(style))
  5. {
  6. }
  7. LayoutTableCell::~LayoutTableCell()
  8. {
  9. }