LibWeb: Use qualified names for SVG attribute reflectors

This commit is contained in:
Luke Wilde 2025-10-31 12:27:49 +00:00 committed by Tim Flynn
parent d211df8118
commit 60e1a136aa
Notes: github-actions[bot] 2025-11-06 16:46:15 +00:00
16 changed files with 51 additions and 44 deletions

View file

@ -63,7 +63,7 @@ float SVGStopElement::stop_opacity() const
GC::Ref<SVGAnimatedNumber> SVGStopElement::offset()
{
if (!m_stop_offset)
m_stop_offset = SVGAnimatedNumber::create(realm(), *this, AttributeNames::offset, 0.f);
m_stop_offset = SVGAnimatedNumber::create(realm(), *this, DOM::QualifiedName { AttributeNames::offset, OptionalNone {}, OptionalNone {} }, 0.f);
return *m_stop_offset;
}