1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

LibWeb: Support the :scope pseudo class

This commit is contained in:
Simon Wanner 2023-03-20 23:42:17 +01:00 committed by Andreas Kling
parent a96ba912b3
commit c8ebacb1c9
6 changed files with 23 additions and 12 deletions

View file

@ -111,6 +111,7 @@ public:
Where,
Active,
Lang,
Scope,
};
Type type;
@ -292,6 +293,8 @@ constexpr StringView pseudo_class_name(Selector::SimpleSelector::PseudoClass::Ty
return "where"sv;
case Selector::SimpleSelector::PseudoClass::Type::Lang:
return "lang"sv;
case Selector::SimpleSelector::PseudoClass::Type::Scope:
return "scope"sv;
}
VERIFY_NOT_REACHED();
}