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

LibWeb: Convert ParentNode.querySelectorAll to NodeList

This commit is contained in:
Luke Wilde 2021-10-02 20:36:39 +01:00 committed by Andreas Kling
parent 8d6db36cbb
commit 2f7fb1fe63
5 changed files with 8 additions and 7 deletions

View file

@ -23,7 +23,7 @@ public:
u32 child_element_count() const;
ExceptionOr<RefPtr<Element>> query_selector(StringView);
ExceptionOr<NonnullRefPtrVector<Element>> query_selector_all(StringView);
ExceptionOr<NonnullRefPtr<NodeList>> query_selector_all(StringView);
NonnullRefPtr<HTMLCollection> children();