ladybird/Libraries/LibWeb/HTML/HTMLSpanElement.h
2025-04-28 19:46:05 +01:00

37 lines
875 B
C++

/*
* Copyright (c) 2020, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/ARIA/Roles.h>
#include <LibWeb/HTML/HTMLElement.h>
namespace Web::HTML {
class HTMLSpanElement final : public HTMLElement {
WEB_PLATFORM_OBJECT(HTMLSpanElement, HTMLElement);
GC_DECLARE_ALLOCATOR(HTMLSpanElement);
public:
virtual ~HTMLSpanElement() override;
// https://www.w3.org/TR/html-aria/#el-span
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::generic; }
virtual bool is_html_span_element() const override { return true; }
private:
HTMLSpanElement(DOM::Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;
};
}
namespace Web::DOM {
template<>
inline bool Node::fast_is<HTML::HTMLSpanElement>() const { return is_html_span_element(); }
}