Skip to content

Commit

Permalink
fix(css_parser): fix the CSS parser doesn't support nested selectors …
Browse files Browse the repository at this point in the history
…with pseudo-classes #3287
  • Loading branch information
denbezrukov committed Jun 30, 2024
1 parent 37822bf commit 209443e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl ParseNodeList for DeclarationOrRuleList {
// if we are at a declaration, we need to check if it is a nested qualified rule
// because it can be parsed as a declaration or a nested qualified rule
// main {
// label:hover { <--- it looks like a declaration because we have but it is a nested qualified rule
// label:hover { <--- it looks like a declaration but it is a nested qualified rule
// font-weight: 500;
// }
// }
Expand Down

0 comments on commit 209443e

Please sign in to comment.