2020-07-31 23:04:26 -03:00
|
|
|
/*
|
2021-04-28 17:46:44 -03:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-07-31 23:04:26 -03:00
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-07-31 23:04:26 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-01-28 19:23:16 -03:00
|
|
|
#include <LibWeb/ARIA/Roles.h>
|
2023-12-10 06:42:41 -03:00
|
|
|
#include <LibWeb/DOM/HTMLCollection.h>
|
2021-10-14 12:18:49 -03:00
|
|
|
#include <LibWeb/HTML/FormAssociatedElement.h>
|
2022-03-23 19:55:54 -03:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2020-07-31 23:04:26 -03:00
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
2022-03-23 19:55:54 -03:00
|
|
|
class HTMLFieldSetElement final
|
|
|
|
|
: public HTMLElement
|
|
|
|
|
, public FormAssociatedElement {
|
2022-08-28 08:42:07 -03:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLFieldSetElement, HTMLElement);
|
2024-11-14 12:01:23 -03:00
|
|
|
GC_DECLARE_ALLOCATOR(HTMLFieldSetElement);
|
2022-03-23 19:55:54 -03:00
|
|
|
FORM_ASSOCIATED_ELEMENT(HTMLElement, HTMLFieldSetElement)
|
|
|
|
|
|
2020-07-31 23:04:26 -03:00
|
|
|
public:
|
|
|
|
|
virtual ~HTMLFieldSetElement() override;
|
|
|
|
|
|
2023-11-25 19:21:41 -03:00
|
|
|
String const& type() const
|
2020-09-18 04:49:51 -03:00
|
|
|
{
|
2023-11-25 19:21:41 -03:00
|
|
|
static String const fieldset = "fieldset"_string;
|
2020-07-31 23:04:26 -03:00
|
|
|
return fieldset;
|
|
|
|
|
}
|
2022-03-01 18:03:30 -03:00
|
|
|
|
2022-09-30 12:21:34 -03:00
|
|
|
bool is_disabled() const;
|
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
GC::Ptr<DOM::HTMLCollection> const& elements();
|
2023-12-10 06:42:41 -03:00
|
|
|
|
2022-03-01 18:03:30 -03:00
|
|
|
// ^FormAssociatedElement
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-listed
|
|
|
|
|
virtual bool is_listed() const override { return true; }
|
|
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
|
|
|
|
virtual bool is_auto_capitalize_inheriting() const override { return true; }
|
2022-08-28 08:42:07 -03:00
|
|
|
|
2023-01-28 19:23:16 -03:00
|
|
|
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::group; }
|
2022-11-28 20:58:13 -03:00
|
|
|
|
2024-12-20 12:35:12 -03:00
|
|
|
virtual GC::Ptr<Layout::Node> create_layout_node(GC::Ref<CSS::ComputedProperties>) override;
|
2024-11-05 05:07:13 -03:00
|
|
|
Layout::FieldSetBox* layout_node();
|
|
|
|
|
Layout::FieldSetBox const* layout_node() const;
|
|
|
|
|
|
2022-08-28 08:42:07 -03:00
|
|
|
private:
|
|
|
|
|
HTMLFieldSetElement(DOM::Document&, DOM::QualifiedName);
|
2023-01-10 08:28:20 -03:00
|
|
|
|
2023-08-07 03:41:28 -03:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-12-10 06:42:41 -03:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
|
2024-11-14 12:01:23 -03:00
|
|
|
GC::Ptr<DOM::HTMLCollection> m_elements;
|
2020-07-31 23:04:26 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|