mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb/SVG: Implement <metadata> element
This commit is contained in:
parent
b3fa8f0ce2
commit
e2f599ebee
Notes:
github-actions[bot]
2024-08-17 05:41:34 +00:00
Author: https://github.com/jamierocks
Commit: e2f599ebee
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1092
11 changed files with 75 additions and 0 deletions
33
Userland/Libraries/LibWeb/SVG/SVGMetadataElement.cpp
Normal file
33
Userland/Libraries/LibWeb/SVG/SVGMetadataElement.cpp
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue