LibWeb: Make NodeList GC-allocated

This commit is contained in:
Andreas Kling 2022-09-01 16:30:26 +02:00
commit 48e0066371
Notes: sideshowbarker 2024-07-17 07:27:43 +09:00
16 changed files with 128 additions and 57 deletions

View file

@ -24,7 +24,7 @@ public:
u32 child_element_count() const;
ExceptionOr<JS::GCPtr<Element>> query_selector(StringView);
ExceptionOr<NonnullRefPtr<NodeList>> query_selector_all(StringView);
ExceptionOr<JS::NonnullGCPtr<NodeList>> query_selector_all(StringView);
NonnullRefPtr<HTMLCollection> children();