LibWeb: Add Document.getElementsByTagName()

This commit is contained in:
Andreas Kling 2020-06-25 22:23:33 +02:00
commit edf0aacda4
Notes: sideshowbarker 2024-07-19 05:22:34 +09:00
3 changed files with 13 additions and 0 deletions

View file

@ -118,6 +118,7 @@ public:
void schedule_style_update();
Vector<const Element*> get_elements_by_name(const String&) const;
NonnullRefPtrVector<Element> get_elements_by_tag_name(const String&) const;
RefPtr<Element> query_selector(const StringView&);
NonnullRefPtrVector<Element> query_selector_all(const StringView&);