2022-04-10 19:05:12 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
#include <LibWeb/HTML/Window.h>
|
2022-04-10 19:05:12 +02:00
|
|
|
#include <LibWeb/SVG/SVGClipPathElement.h>
|
|
|
|
|
|
|
|
namespace Web::SVG {
|
|
|
|
|
|
|
|
SVGClipPathElement::SVGClipPathElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
|
|
|
: SVGElement(document, move(qualified_name))
|
|
|
|
{
|
2022-09-25 18:04:39 -06:00
|
|
|
set_prototype(&Bindings::cached_web_prototype(realm(), "SVGClipPathElement"));
|
2022-04-10 19:05:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
SVGClipPathElement::~SVGClipPathElement()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<Layout::Node> SVGClipPathElement::create_layout_node(NonnullRefPtr<CSS::StyleProperties>)
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|