mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:58:11 +00:00
LibWeb: Implement the :volume-locked
pseudo-class
This commit is contained in:
parent
c8a51f232d
commit
eb7cda1172
5 changed files with 14 additions and 0 deletions
|
@ -554,6 +554,9 @@ void dump_selector(StringBuilder& builder, CSS::Selector const& selector)
|
|||
case CSS::Selector::SimpleSelector::PseudoClass::Type::Muted:
|
||||
pseudo_class_description = "Muted";
|
||||
break;
|
||||
case CSS::Selector::SimpleSelector::PseudoClass::Type::VolumeLocked:
|
||||
pseudo_class_description = "VolumeLocked";
|
||||
break;
|
||||
}
|
||||
|
||||
builder.appendff(" pseudo_class={}", pseudo_class_description);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue