LibWeb/SVG: Implement <metadata> element

This commit is contained in:
Jamie Mansfield 2024-08-16 17:27:32 +01:00 committed by Andreas Kling
commit e2f599ebee
Notes: github-actions[bot] 2024-08-17 05:41:34 +00:00
11 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/*
* 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;
}
}