/* * Copyright (c) 2018-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace Web::HTML { class HTMLFormElement final : public HTMLElement { public: using WrapperType = Bindings::HTMLFormElementWrapper; HTMLFormElement(DOM::Document&, DOM::QualifiedName); virtual ~HTMLFormElement() override; String action() const; String method() const { return attribute(HTML::AttributeNames::method); } void submit_form(RefPtr submitter, bool from_submit_binding = false); // NOTE: This is for the JS bindings. Use submit_form instead. void submit(); void add_associated_element(Badge, HTMLElement&); void remove_associated_element(Badge, HTMLElement&); NonnullRefPtr elements() const; unsigned length() const; private: bool m_firing_submission_events { false }; Vector> m_associated_elements; }; }