ladybird/Libraries/LibWeb/HTML/HTMLSummaryElement.h
Shannon Booth 4d64f21fa5 LibWeb: Give IDL exposed PlatformObjects an InterfaceName
By making use of the WEB_PLATFORM_OBJECT macro we can remove
the boilerplate of needing to add this override for every
serializable platform object so that we can check whether they
are exposed or not.
2026-02-14 20:22:40 +01:00

36 lines
927 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 HTMLSummaryElement final : public HTMLElement {
WEB_NON_IDL_PLATFORM_OBJECT(HTMLSummaryElement, HTMLElement);
GC_DECLARE_ALLOCATOR(HTMLSummaryElement);
public:
virtual ~HTMLSummaryElement() override;
// https://www.w3.org/TR/html-aria/#el-details
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::button; }
bool is_summary_for_its_parent_details() const;
virtual bool has_activation_behavior() const override;
virtual void activation_behavior(DOM::Event const&) override;
virtual bool is_focusable() const override;
private:
HTMLSummaryElement(DOM::Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;
};
}