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

LibWeb: Implement attribute selector case identifier

This commit is contained in:
Daniel Glazman 2022-03-29 18:01:36 +02:00 committed by Andreas Kling
parent 049d847230
commit 91e1383b85
4 changed files with 82 additions and 12 deletions

View file

@ -100,9 +100,15 @@ public:
StartsWithString, // [att^=val]
EndsWithString, // [att$=val]
};
enum class CaseType {
DefaultMatch,
CaseSensitiveMatch,
CaseInsensitiveMatch,
};
MatchType match_type;
FlyString name {};
String value {};
CaseType case_type;
};
Type type;