mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +00:00
a98ad191c7
This isn't comprehensive; just a result of a simple grep search.
34 lines
1,020 B
C++
34 lines
1,020 B
C++
/*
|
|
* Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/HTMLCollection.h>
|
|
#include <LibWeb/DOM/RadioNodeList.h>
|
|
|
|
namespace Web::DOM {
|
|
|
|
class HTMLFormControlsCollection : public HTMLCollection {
|
|
WEB_PLATFORM_OBJECT(HTMLFormControlsCollection, HTMLCollection);
|
|
JS_DECLARE_ALLOCATOR(HTMLFormControlsCollection);
|
|
|
|
public:
|
|
[[nodiscard]] static JS::NonnullGCPtr<HTMLFormControlsCollection> create(ParentNode& root, Scope, ESCAPING Function<bool(Element const&)> filter);
|
|
|
|
virtual ~HTMLFormControlsCollection() override;
|
|
|
|
Variant<Empty, Element*, JS::Handle<RadioNodeList>> named_item_or_radio_node_list(FlyString const& name) const;
|
|
|
|
protected:
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
virtual WebIDL::ExceptionOr<JS::Value> named_item_value(FlyString const& name) const final;
|
|
|
|
private:
|
|
HTMLFormControlsCollection(ParentNode& root, Scope, ESCAPING Function<bool(Element const&)> filter);
|
|
};
|
|
|
|
}
|