mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-21 09:49:21 +00:00
LibWeb/CSS: Parse the &
nesting selector
This commit is contained in:
parent
55f58eea99
commit
5b4d1b5b05
Notes:
github-actions[bot]
2024-10-17 18:57:46 +00:00
Author: https://github.com/AtkinsSJ
Commit: 5b4d1b5b05
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1842
Reviewed-by: https://github.com/awesomekling
5 changed files with 23 additions and 9 deletions
|
@ -503,6 +503,9 @@ void dump_selector(StringBuilder& builder, CSS::Selector const& selector, int in
|
|||
case CSS::Selector::SimpleSelector::Type::PseudoElement:
|
||||
type_description = "PseudoElement";
|
||||
break;
|
||||
case CSS::Selector::SimpleSelector::Type::Nesting:
|
||||
type_description = "Nesting";
|
||||
break;
|
||||
}
|
||||
|
||||
builder.appendff("{}:", type_description);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue