ladybird/Libraries/LibWeb/HTML/HTMLSpanElement.h

40 lines
877 B
C
Raw Normal View History

/*
* 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; }
2025-04-24 20:09:14 +02:00
virtual bool is_html_span_element() const override { return true; }
private:
HTMLSpanElement(DOM::Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;
};
}
2025-04-24 20:09:14 +02:00
namespace Web::DOM {
2025-04-24 20:09:14 +02:00
template<>
inline bool Node::fast_is<HTML::HTMLSpanElement>() const { return is_html_span_element(); }
2025-04-24 20:09:14 +02:00
}