1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:17:35 +00:00

LibWeb: Implement RadioNodeList

This interface is used in the interface for HTMLFormControlsCollection
as a live view over its matching elements.

Currently the "value" attribute for this interface is left
unimplemented.
This commit is contained in:
Shannon Booth 2023-08-20 14:39:57 +12:00 committed by Andreas Kling
parent c2bf391f81
commit daefe744ba
7 changed files with 73 additions and 1 deletions

View file

@ -1,6 +1,6 @@
/*
* Copyright (c) 2020-2023, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021, the SerenityOS developers.
* Copyright (c) 2021-2023, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -238,6 +238,7 @@ class ParentNode;
class Position;
class ProcessingInstruction;
class Range;
class RadioNodeList;
class RegisteredObserver;
class ShadowRoot;
class StaticNodeList;