1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:58:11 +00:00

LibWeb: Yet more work towards parsing www/welcome.html :^)

This commit is contained in:
Andreas Kling 2020-05-24 22:21:25 +02:00
parent 45da08a1e6
commit 65d8d5e83e
4 changed files with 111 additions and 7 deletions

View file

@ -45,8 +45,11 @@ public:
Element& current_node() { return m_elements.last(); }
bool has_in_scope(const FlyString& tag_name) const;
bool has_in_button_scope(const FlyString& tag_name) const;
private:
bool has_in_scope_impl(const FlyString& tag_name, const Vector<FlyString>&) const;
NonnullRefPtrVector<Element> m_elements;
};