LibWeb: Add namespaces to Attribute selectors

For now, we parse these, but don't actually consider the namespace when
matching them. `DOM::Element` does not (yet) store attribute namespaces
so we can't check what they are.
This commit is contained in:
Sam Atkins 2023-08-08 16:19:20 +01:00 committed by Sam Atkins
commit debf38ee9d
Notes: sideshowbarker 2024-07-16 23:34:44 +09:00
5 changed files with 51 additions and 36 deletions

View file

@ -177,7 +177,7 @@ public:
CaseInsensitiveMatch,
};
MatchType match_type;
FlyString name {};
QualifiedName qualified_name;
String value {};
CaseType case_type;
};