1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:28:11 +00:00

LibWeb: Implement value attribute of RadioNodeList

This commit is contained in:
Shannon Booth 2023-08-25 12:28:36 +12:00 committed by Andreas Kling
parent 708263790a
commit f115e44066
5 changed files with 180 additions and 1 deletions

View file

@ -19,6 +19,9 @@ public:
virtual ~RadioNodeList() override;
FlyString value() const;
void set_value(FlyString const&);
protected:
virtual void initialize(JS::Realm&) override;