mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
8556d47240
ARIA has its own spec and is not part of the DOM spec, which is what the Web::DOM namespace is for (https://www.w3.org/TR/wai-aria-1.2/). This allows us to stay closer to the spec with function names and don't have to add the word "ARIA" to identifiers constantly - the namespace now provides that clarity.
39 lines
1,017 B
C++
39 lines
1,017 B
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
#include <LibWeb/HTML/HTMLModElement.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
HTMLModElement::HTMLModElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
|
: HTMLElement(document, move(qualified_name))
|
|
{
|
|
}
|
|
|
|
HTMLModElement::~HTMLModElement() = default;
|
|
|
|
JS::ThrowCompletionOr<void> HTMLModElement::initialize(JS::Realm& realm)
|
|
{
|
|
MUST_OR_THROW_OOM(Base::initialize(realm));
|
|
set_prototype(&Bindings::ensure_web_prototype<Bindings::HTMLModElementPrototype>(realm, "HTMLModElement"));
|
|
|
|
return {};
|
|
}
|
|
|
|
Optional<ARIA::Role> HTMLModElement::default_role() const
|
|
{
|
|
// https://www.w3.org/TR/html-aria/#el-del
|
|
if (local_name() == TagNames::del)
|
|
return ARIA::Role::deletion;
|
|
// https://www.w3.org/TR/html-aria/#el-ins
|
|
if (local_name() == TagNames::ins)
|
|
return ARIA::Role::insertion;
|
|
VERIFY_NOT_REACHED();
|
|
}
|
|
|
|
}
|