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);
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_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;
|
|
|
|
|
2023-12-10 10:42:41 +01:00
|
|
|
JS::GCPtr<DOM::HTMLCollection> const& elements();
|
|
|
|
|
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
|
|
|
|
virtual bool is_auto_capitalize_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
|
|
|
|
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;
|
|
|
|
|
|
|
|
JS::GCPtr<DOM::HTMLCollection> m_elements;
|
2020-08-01 03:04:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|