diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Selector.h')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/Selector.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Selector.h b/Userland/Libraries/LibWeb/CSS/Selector.h index 1247b2b0d4..62c28c4642 100644 --- a/Userland/Libraries/LibWeb/CSS/Selector.h +++ b/Userland/Libraries/LibWeb/CSS/Selector.h @@ -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 }; |