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