mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 22:35:07 +00:00
LibHTML: Implement the universal selector ("*")
This commit is contained in:
parent
516708aab2
commit
56dad2272c
4 changed files with 12 additions and 0 deletions
|
@ -150,6 +150,9 @@ void dump_rule(const StyleRule& rule)
|
|||
case Selector::Component::Type::Invalid:
|
||||
type_description = "Invalid";
|
||||
break;
|
||||
case Selector::Component::Type::Universal:
|
||||
type_description = "Universal";
|
||||
break;
|
||||
case Selector::Component::Type::Id:
|
||||
type_description = "Id";
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue