ladybird/Libraries/LibWeb/HTML/HTMLOptGroupElement.h
Andreas Kling dc9179bb1b LibWeb: Keep track of the order in which option elements are selected
This allows us to locate the most-recently-selected when running the
selectedness update algorithm.
2024-11-14 23:06:30 +01:00

32 lines
782 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 HTMLOptGroupElement final : public HTMLElement {
WEB_PLATFORM_OBJECT(HTMLOptGroupElement, HTMLElement);
JS_DECLARE_ALLOCATOR(HTMLOptGroupElement);
public:
virtual ~HTMLOptGroupElement() override;
// https://www.w3.org/TR/html-aria/#el-optgroup
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::group; }
private:
HTMLOptGroupElement(DOM::Document&, DOM::QualifiedName);
virtual void initialize(JS::Realm&) override;
virtual void removed_from(Node*) override;
virtual void inserted() override;
};
}