LibWeb: Add selector support to the new CSSParser

This is stolen from the old parser, but it seems to parse fine :^)
This commit is contained in:
stelar7 2021-04-29 21:16:28 +02:00 committed by Andreas Kling
commit 55446172cb
Notes: sideshowbarker 2024-07-18 18:53:12 +09:00
6 changed files with 236 additions and 2 deletions

View file

@ -53,6 +53,7 @@ public:
HasAttribute,
ExactValueMatch,
Contains,
StartsWith,
};
AttributeMatchType attribute_match_type { AttributeMatchType::None };
@ -67,6 +68,7 @@ public:
Descendant,
AdjacentSibling,
GeneralSibling,
Column,
};
Relation relation { Relation::None };