summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLOptionsCollection.h
AgeCommit message (Collapse)Author
2022-03-22LibWeb: Implement HTMLOptionsCollection.add()Timothy Flynn
2022-03-16LibWeb: Add stub implementation of HTMLOptionsCollectionSimon Wanner
This is a subtype of `DOM::HTMLCollection` that only holds `HTMLOptionElement`s. In this stub implementation only `item`, `namedItem` and `length`, inherited from HTMLCollection, are exposed. This is good enough for applications that only read the collection.