Skip to content

Commit 933052d

Browse files
authored
update tests results for postcss 8.4.17 (#1481)
1 parent 0d799e8 commit 933052d

9 files changed

+17
-31
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"eslint-plugin-prefer-let": "^3.0.1",
5959
"eslint-plugin-promise": "^6.0.1",
6060
"nanospy": "^0.5.0",
61-
"postcss": "^8.4.16",
61+
"postcss": "^8.4.17",
6262
"size-limit": "^8.1.0",
6363
"uvu": "^0.5.6"
6464
},

pnpm-lock.yaml

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/cases/example.out.css

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
::-moz-placeholder {
22
color: gray;
3-
}
4-
5-
::placeholder {
3+
}::placeholder {
64
color: gray;
75
}
86

test/cases/file-selector-button.out.css

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
::-webkit-file-upload-button {
22
background: black
3-
}
4-
5-
::file-selector-button {
3+
}::file-selector-button {
64
background: black
75
}
86

test/cases/fullscreen.out.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
:-webkit-full-screen {
22
background: black
3-
}
4-
:fullscreen {
3+
}:fullscreen {
54
background: black
65
}

test/cases/keyframes.out.css

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
-webkit-transform: rotate(0);
1818
transform: rotate(0)
1919
}
20-
}
21-
@-o-keyframes anim {
20+
}@-o-keyframes anim {
2221
from {
2322
top: calc(10% + 10px);
2423
-o-transform: rotate(10deg);
@@ -33,8 +32,7 @@
3332
-o-transform: rotate(0);
3433
transform: rotate(0)
3534
}
36-
}
37-
@keyframes anim {
35+
}@keyframes anim {
3836
from {
3937
top: -webkit-calc(10% + 10px);
4038
top: calc(10% + 10px);

test/cases/placeholder-shown.out.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
:-ms-input-placeholder {
22
background: #eee
3-
}
4-
:placeholder-shown {
3+
}:placeholder-shown {
54
background: #eee
65
}

test/cases/placeholder.out.css

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
::-webkit-input-placeholder {
22
color: #999
3-
}
4-
:-moz-placeholder {
3+
}:-moz-placeholder {
54
color: #999
6-
}
7-
::-moz-placeholder {
5+
}::-moz-placeholder {
86
color: #999
9-
}
10-
:-ms-input-placeholder {
7+
}:-ms-input-placeholder {
118
color: #999
12-
}
13-
::-ms-input-placeholder {
9+
}::-ms-input-placeholder {
1410
color: #999
15-
}
16-
::placeholder {
11+
}::placeholder {
1712
color: #999
1813
}

test/cases/viewport.out.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@-ms-viewport {
22
width: device-width;
3-
}
4-
@viewport {
3+
}@viewport {
54
width: device-width;
65
}

0 commit comments

Comments
 (0)