
This commit introduces a WEB_SET_PROTOTYPE_FOR_INTERFACE macro that caches the interface name in a local static FlyString. This means that we only pay for FlyString-from-literal lookup once per browser lifetime instead of every time the interface is instantiated.
48 lines
1 KiB
C++
48 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2023, Jonah Shafran <jonahshafran@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/ExceptionOrUtils.h>
|
|
#include <LibWeb/MathML/MathMLElement.h>
|
|
#include <LibWeb/MathML/TagNames.h>
|
|
|
|
namespace Web::MathML {
|
|
|
|
JS_DEFINE_ALLOCATOR(MathMLElement);
|
|
|
|
MathMLElement::~MathMLElement() = default;
|
|
|
|
MathMLElement::MathMLElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
|
: DOM::Element(document, move(qualified_name))
|
|
{
|
|
}
|
|
|
|
void MathMLElement::initialize(JS::Realm& realm)
|
|
{
|
|
Base::initialize(realm);
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(MathMLElement);
|
|
|
|
m_dataset = HTML::DOMStringMap::create(*this);
|
|
}
|
|
|
|
Optional<ARIA::Role> MathMLElement::default_role() const
|
|
{
|
|
// https://www.w3.org/TR/html-aria/#el-math
|
|
if (local_name() == TagNames::math)
|
|
return ARIA::Role::math;
|
|
return {};
|
|
}
|
|
|
|
void MathMLElement::focus()
|
|
{
|
|
dbgln("(STUBBED) MathMLElement::focus()");
|
|
}
|
|
|
|
void MathMLElement::blur()
|
|
{
|
|
dbgln("(STUBBED) MathMLElement::blur()");
|
|
}
|
|
|
|
}
|