mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
34 lines
810 B
C++
34 lines
810 B
C++
![]() |
/*
|
||
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/Bindings/Intrinsics.h>
|
||
|
#include <LibWeb/Bindings/SVGMetadataElementPrototype.h>
|
||
|
#include <LibWeb/DOM/Document.h>
|
||
|
#include <LibWeb/Page/Page.h>
|
||
|
#include <LibWeb/SVG/SVGMetadataElement.h>
|
||
|
|
||
|
namespace Web::SVG {
|
||
|
|
||
|
JS_DEFINE_ALLOCATOR(SVGMetadataElement);
|
||
|
|
||
|
SVGMetadataElement::SVGMetadataElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
||
|
: SVGElement(document, move(qualified_name))
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void SVGMetadataElement::initialize(JS::Realm& realm)
|
||
|
{
|
||
|
Base::initialize(realm);
|
||
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGMetadataElement);
|
||
|
}
|
||
|
|
||
|
JS::GCPtr<Layout::Node> SVGMetadataElement::create_layout_node(NonnullRefPtr<CSS::StyleProperties>)
|
||
|
{
|
||
|
return nullptr;
|
||
|
}
|
||
|
|
||
|
}
|