1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:27:35 +00:00

LibWeb: Implement the :muted pseudo-class

This commit is contained in:
Sam Atkins 2023-08-01 14:49:28 +01:00 committed by Tim Flynn
parent 7b4ae43b91
commit c8a51f232d
6 changed files with 16 additions and 0 deletions

View file

@ -551,6 +551,9 @@ void dump_selector(StringBuilder& builder, CSS::Selector const& selector)
case CSS::Selector::SimpleSelector::PseudoClass::Type::Seeking:
pseudo_class_description = "Seeking";
break;
case CSS::Selector::SimpleSelector::PseudoClass::Type::Muted:
pseudo_class_description = "Muted";
break;
}
builder.appendff(" pseudo_class={}", pseudo_class_description);