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

LibWeb: Add Document.getElementsByTagName()

This commit is contained in:
Andreas Kling 2020-06-25 22:23:33 +02:00
parent 200481efb2
commit edf0aacda4
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&);