Skip to content

Commit 3342759

Browse files
committed
Fix test order
1 parent 0d392a3 commit 3342759

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

test/test.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,6 @@
109109
display: color-mod(#112233 tint(50%));
110110
}
111111

112-
@supports (display: auto) or
113-
(display: auto) not
114-
(display: auto) {
115-
.conditional {
116-
display: auto;
117-
}
118-
}
119-
120112
.compositing-1 {
121113
mix-blend-mode: multiply;
122114
isolation: screen;
@@ -135,6 +127,14 @@
135127
display: luminosity;
136128
}
137129

130+
@supports (display: auto) or
131+
(display: auto) not
132+
(display: auto) {
133+
.conditional {
134+
display: auto;
135+
}
136+
}
137+
138138
.contain-1 {
139139
contain: layout;
140140
display: paint;

test/test.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,6 @@
129129
}
130130
</style>
131131
<style>
132-
@supports (display: auto) or
133-
(display: auto) not
134-
(display: auto) {
135-
.conditional {
136-
display: auto;
137-
}
138-
}
139-
</style>
140-
<style>
141132
.compositing-1 {
142133
mix-blend-mode: multiply;
143134
isolation: screen;
@@ -157,6 +148,15 @@
157148
}
158149
</style>
159150
<style>
151+
@supports (display: auto) or
152+
(display: auto) not
153+
(display: auto) {
154+
.conditional {
155+
display: auto;
156+
}
157+
}
158+
</style>
159+
<style>
160160
.contain-1 {
161161
contain: layout;
162162
display: paint;

0 commit comments

Comments
 (0)