From e4e534a9b4e04d00ccd2d94c563f821242e81a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 28 Jul 2023 21:56:11 +0200 Subject: [PATCH] Fix another nesting expectaation. (#41225) --- css/css-nesting/parsing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/css-nesting/parsing.html b/css/css-nesting/parsing.html index 2b0fd5cde9d3ca..ee9f35484469cb 100644 --- a/css/css-nesting/parsing.html +++ b/css/css-nesting/parsing.html @@ -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");