1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00

LibWeb: Support parsing "select" elements (outside of tables)

This commit is contained in:
Andreas Kling 2020-05-30 19:58:52 +02:00
parent 60352c7b9b
commit ca6fbefbc9
4 changed files with 173 additions and 2 deletions

View file

@ -51,6 +51,7 @@ public:
bool has_in_button_scope(const FlyString& tag_name) const;
bool has_in_table_scope(const FlyString& tag_name) const;
bool has_in_list_item_scope(const FlyString& tag_name) const;
bool has_in_select_scope(const FlyString& tag_name) const;
bool has_in_scope(const Element&) const;