/* * Copyright (c) 2023, Preston Taylor <95388976+PrestonLTaylor@users.noreply.github.com> * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include #include #include #include #include namespace Web::SVG { JS_DEFINE_ALLOCATOR(SVGSymbolElement); SVGSymbolElement::SVGSymbolElement(DOM::Document& document, DOM::QualifiedName qualified_name) : SVGGraphicsElement(document, qualified_name) { } void SVGSymbolElement::initialize(JS::Realm& realm) { Base::initialize(realm); WEB_SET_PROTOTYPE_FOR_INTERFACE(SVGSymbolElement); } // https://svgwg.org/svg2-draft/struct.html#SymbolNotes void SVGSymbolElement::apply_presentational_hints(CSS::StyleProperties& style) const { Base::apply_presentational_hints(style); if (is_direct_child_of_use_shadow_tree()) { // The generated instance of a ‘symbol’ that is the direct referenced element of a ‘use’ element must always have a computed value of inline for the display property. style.set_property(CSS::PropertyID::Display, CSS::DisplayStyleValue::create(CSS::Display::from_short(CSS::Display::Short::Inline))); } } void SVGSymbolElement::attribute_changed(FlyString const& name, Optional const& value) { Base::attribute_changed(name, value); if (name.equals_ignoring_ascii_case(SVG::AttributeNames::viewBox)) m_view_box = try_parse_view_box(value.value_or(String {})); } bool SVGSymbolElement::is_direct_child_of_use_shadow_tree() const { auto maybe_shadow_root = parent(); if (!is(maybe_shadow_root)) { return false; } auto host = static_cast(*maybe_shadow_root).host(); return is(host); } JS::GCPtr SVGSymbolElement::create_layout_node(NonnullRefPtr style) { return heap().allocate_without_realm(document(), *this, move(style)); } }