2021-04-20 11:50:29 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-04-20 11:50:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/WeakPtr.h>
|
|
|
|
#include <LibWeb/Forward.h>
|
2021-10-14 16:18:49 +01:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2021-04-20 11:50:29 +02:00
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2021-10-14 16:18:49 +01:00
|
|
|
class FormAssociatedElement : public HTMLElement {
|
2021-04-20 11:50:29 +02:00
|
|
|
public:
|
|
|
|
HTMLFormElement* form() { return m_form; }
|
|
|
|
HTMLFormElement const* form() const { return m_form; }
|
|
|
|
|
|
|
|
void set_form(HTMLFormElement*);
|
|
|
|
|
2022-03-01 20:59:46 +00:00
|
|
|
bool enabled() const;
|
|
|
|
|
2022-03-01 21:10:48 +00:00
|
|
|
void set_parser_inserted(Badge<HTMLParser>) { m_parser_inserted = true; }
|
|
|
|
|
2022-03-01 21:03:30 +00:00
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-listed
|
|
|
|
virtual bool is_listed() const { return false; }
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-submit
|
|
|
|
virtual bool is_submittable() const { return false; }
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-reset
|
|
|
|
virtual bool is_resettable() const { return false; }
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-autocapitalize
|
|
|
|
virtual bool is_auto_capitalize_inheriting() const { return false; }
|
|
|
|
|
2021-04-20 11:50:29 +02:00
|
|
|
protected:
|
2022-02-18 21:00:52 +01:00
|
|
|
FormAssociatedElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
2021-10-14 16:18:49 +01:00
|
|
|
: HTMLElement(document, move(qualified_name))
|
|
|
|
{
|
|
|
|
}
|
2021-04-20 23:34:49 +02:00
|
|
|
|
2021-10-14 16:18:49 +01:00
|
|
|
virtual ~FormAssociatedElement() = default;
|
2021-04-20 11:50:29 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
WeakPtr<HTMLFormElement> m_form;
|
2022-03-01 21:10:48 +00:00
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#parser-inserted-flag
|
|
|
|
bool m_parser_inserted { false };
|
|
|
|
|
|
|
|
void reset_form_owner();
|
|
|
|
|
|
|
|
// ^DOM::Node
|
|
|
|
virtual void inserted() override;
|
|
|
|
virtual void removed_from(DOM::Node*) override;
|
2021-04-20 11:50:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|