SVGClipPathElement.cpp 502 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/SVG/SVGClipPathElement.h>
  7. namespace Web::SVG {
  8. SVGClipPathElement::SVGClipPathElement(DOM::Document& document, DOM::QualifiedName qualified_name)
  9. : SVGElement(document, move(qualified_name))
  10. {
  11. }
  12. SVGClipPathElement::~SVGClipPathElement()
  13. {
  14. }
  15. RefPtr<Layout::Node> SVGClipPathElement::create_layout_node(NonnullRefPtr<CSS::StyleProperties>)
  16. {
  17. return nullptr;
  18. }
  19. }