2024-08-16 17:27:32 +01:00
|
|
|
/*
|
|
|
|
* 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 {
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(SVGMetadataElement);
|
2024-08-16 17:27:32 +01:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2024-12-20 11:32:17 +01:00
|
|
|
GC::Ptr<Layout::Node> SVGMetadataElement::create_layout_node(CSS::ComputedProperties)
|
2024-08-16 17:27:32 +01:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|