mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
28 lines
669 B
C++
28 lines
669 B
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>
|
||
|
|
||
|
namespace Web::MathML {
|
||
|
|
||
|
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);
|
||
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::MathMLElementPrototype>(realm, "MathMLElement"));
|
||
|
|
||
|
m_dataset = MUST(HTML::DOMStringMap::create(*this));
|
||
|
}
|
||
|
|
||
|
}
|