Skip to content

Commit

Permalink
Fix another nesting expectaation. (#41225)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed Jul 28, 2023
1 parent 239d211 commit e4e534a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion css/css-nesting/parsing.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
testNestedSelector("> .bar", {expected:"& > .bar"});
testNestedSelector("> & .bar", {expected: "& > & .bar"});
testNestedSelector("+ .bar &", {expected:"& + .bar &"});
testNestedSelector("+ .bar, .foo, > .baz", {expected:"& + .bar, & .foo, & > .baz"});
testNestedSelector("+ .bar, .foo, > .baz", {expected:"& + .bar, .foo, & > .baz"});

// implicit relative (and not)
testNestedSelector(".foo");
Expand Down

0 comments on commit e4e534a

Please sign in to comment.