-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tests for fixing unifyCompound() and unifyComplex() ordering o…
…f pseudo class/element selectors (#2018) * Update tests for fixing unifyCompound() and unifyComplex() ordering of pseudo class/element selectors * Add tests to check pseudo selector overlaps and non-pseudo selector ordering * Test for multiple pseudo elements
- Loading branch information
Showing
18 changed files
with
124 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.bip > .baz {@extend .bar} | ||
|
||
<===> output.css | ||
.foo > .bar, .bip.foo > .baz { | ||
.foo > .bar, .foo.bip > .baz { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.b ~ y {@extend x} | ||
|
||
<===> output.css | ||
.a + x, .b ~ .a + y, .a.b + y { | ||
.a + x, .b ~ .a + y, .b.a + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.b + y {@extend x} | ||
|
||
<===> output.css | ||
.a ~ x, .a ~ .b + y, .b.a + y { | ||
.a ~ x, .a ~ .b + y, .a.b + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.b > y {@extend x} | ||
|
||
<===> output.css | ||
.a.b > x, .b.a > y { | ||
.a.b > x, .a.b > y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.b > y {@extend x} | ||
|
||
<===> output.css | ||
.a > x, .b.a > y { | ||
.a > x, .a.b > y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.b + y {@extend x} | ||
|
||
<===> output.css | ||
.a.b + x, .b.a + y { | ||
.a.b + x, .a.b + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.b + y {@extend x} | ||
|
||
<===> output.css | ||
.a + x, .b.a + y { | ||
.a + x, .a.b + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.c > .d + y {@extend x} | ||
|
||
<===> output.css | ||
.a > .b + x, .c.a > .d.b + y { | ||
.a > .b + x, .a.c > .b.d + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
.c > y {@extend x} | ||
|
||
<===> output.css | ||
.a > .b + x, .c.a > .b + y { | ||
.a > .b + x, .a.c > .b + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ | |
y {@extend x} | ||
|
||
<===> output.css | ||
.a > .b + x, .c.a > .d.b + y { | ||
.a > .b + x, .a.c > .b.d + y { | ||
a: b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters