SVGBox.cpp 333 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Layout/SVGBox.h>
  7. namespace Web::Layout {
  8. SVGBox::SVGBox(DOM::Document& document, SVG::SVGElement& element, NonnullRefPtr<CSS::StyleProperties> style)
  9. : Box(document, &element, move(style))
  10. {
  11. }
  12. }