1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:57:45 +00:00

LibWeb: Port HTMLCollection from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-08-12 21:30:18 +12:00 committed by Andreas Kling
parent ebdfe2e863
commit d5409a056a
4 changed files with 7 additions and 5 deletions

View file

@ -40,7 +40,7 @@ public:
size_t length() const;
Element* item(size_t index) const;
Element* named_item(DeprecatedFlyString const& name) const;
Element* named_item(FlyString const& name) const;
JS::MarkedVector<Element*> collect_matching_elements() const;