2020-08-01 03:04:26 +01:00
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-08-01 03:04:26 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-01 03:04:26 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-01-28 22:23:16 +00:00
|
|
|
#include <LibWeb/ARIA/Roles.h>
|
2023-12-10 10:42:41 +01:00
|
|
|
#include <LibWeb/DOM/HTMLCollection.h>
|
2021-10-14 16:18:49 +01:00
|
|
|
#include <LibWeb/HTML/FormAssociatedElement.h>
|
2022-03-23 18:55:54 -04:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2020-08-01 03:04:26 +01:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2022-03-23 18:55:54 -04:00
|
|
|
class HTMLFieldSetElement final
|
|
|
|
: public HTMLElement
|
|
|
|
, public FormAssociatedElement {
|
2022-08-28 13:42:07 +02:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLFieldSetElement, HTMLElement);
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DECLARE_ALLOCATOR(HTMLFieldSetElement);
|
2022-03-23 18:55:54 -04:00
|
|
|
FORM_ASSOCIATED_ELEMENT(HTMLElement, HTMLFieldSetElement)
|
|
|
|
|
2020-08-01 03:04:26 +01:00
|
|
|
public:
|
|
|
|
virtual ~HTMLFieldSetElement() override;
|
|
|
|
|
2023-11-26 11:21:41 +13:00
|
|
|
String const& type() const
|
2020-09-18 09:49:51 +02:00
|
|
|
{
|
2023-11-26 11:21:41 +13:00
|
|
|
static String const fieldset = "fieldset"_string;
|
2020-08-01 03:04:26 +01:00
|
|
|
return fieldset;
|
|
|
|
}
|
2022-03-01 21:03:30 +00:00
|
|
|
|
2022-09-30 16:21:34 +01:00
|
|
|
bool is_disabled() const;
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ptr<DOM::HTMLCollection> const& elements();
|
2023-12-10 10:42:41 +01:00
|
|
|
|
2022-03-01 21:03:30 +00: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
|
2025-05-26 16:21:29 +12:00
|
|
|
virtual bool is_autocapitalize_and_autocorrect_inheriting() const override { return true; }
|
2022-08-28 13:42:07 +02:00
|
|
|
|
2023-01-28 22:23:16 +00:00
|
|
|
virtual Optional<ARIA::Role> default_role() const override { return ARIA::Role::group; }
|
2022-11-28 17:58:13 -06:00
|
|
|
|
2024-12-20 16:35:12 +01:00
|
|
|
virtual GC::Ptr<Layout::Node> create_layout_node(GC::Ref<CSS::ComputedProperties>) override;
|
2024-11-05 08:07:13 +00:00
|
|
|
Layout::FieldSetBox* layout_node();
|
|
|
|
Layout::FieldSetBox const* layout_node() const;
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
private:
|
|
|
|
HTMLFieldSetElement(DOM::Document&, DOM::QualifiedName);
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-12-10 10:42:41 +01:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2025-04-18 10:27:59 +02:00
|
|
|
virtual bool is_html_fieldset_element() const override { return true; }
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC::Ptr<DOM::HTMLCollection> m_elements;
|
2020-08-01 03:04:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2025-04-18 10:27:59 +02:00
|
|
|
|
|
|
|
namespace Web::DOM {
|
2025-05-13 07:06:33 -04:00
|
|
|
|
2025-04-18 10:27:59 +02:00
|
|
|
template<>
|
|
|
|
inline bool Node::fast_is<HTML::HTMLFieldSetElement>() const { return is_html_fieldset_element(); }
|
2025-05-13 07:06:33 -04:00
|
|
|
|
2025-04-18 10:27:59 +02:00
|
|
|
}
|