LegendBox.cpp 405 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2024, Kostya Farber <kostya.farber@gmail.com>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Layout/LegendBox.h>
  7. namespace Web::Layout {
  8. GC_DEFINE_ALLOCATOR(LegendBox);
  9. LegendBox::LegendBox(DOM::Document& document, DOM::Element& element, CSS::StyleProperties style)
  10. : BlockContainer(document, &element, move(style))
  11. {
  12. }
  13. LegendBox::~LegendBox() = default;
  14. }