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:
parent
049d847230
commit
91e1383b85
4 changed files with 82 additions and 12 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue