mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 11:09:18 +00:00
LibWeb: Implement the :muted
pseudo-class
This commit is contained in:
parent
7b4ae43b91
commit
c8a51f232d
Notes:
sideshowbarker
2024-07-17 03:30:41 +09:00
Author: https://github.com/AtkinsSJ
Commit: c8a51f232d
Pull-request: https://github.com/SerenityOS/serenity/pull/20302
Reviewed-by: https://github.com/trflynn89 ✅
6 changed files with 16 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue