Skip to content

Commit

Permalink
update tests results for postcss 8.4.17 (#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
romainmenke committed Sep 30, 2022
1 parent 0d799e8 commit 933052d
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 31 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -58,7 +58,7 @@
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.0.1",
"nanospy": "^0.5.0",
"postcss": "^8.4.16",
"postcss": "^8.4.17",
"size-limit": "^8.1.0",
"uvu": "^0.5.6"
},
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions test/cases/example.out.css
@@ -1,8 +1,6 @@
::-moz-placeholder {
color: gray;
}

::placeholder {
}::placeholder {
color: gray;
}

Expand Down
4 changes: 1 addition & 3 deletions test/cases/file-selector-button.out.css
@@ -1,8 +1,6 @@
::-webkit-file-upload-button {
background: black
}

::file-selector-button {
}::file-selector-button {
background: black
}

Expand Down
3 changes: 1 addition & 2 deletions test/cases/fullscreen.out.css
@@ -1,6 +1,5 @@
:-webkit-full-screen {
background: black
}
:fullscreen {
}:fullscreen {
background: black
}
6 changes: 2 additions & 4 deletions test/cases/keyframes.out.css
Expand Up @@ -17,8 +17,7 @@
-webkit-transform: rotate(0);
transform: rotate(0)
}
}
@-o-keyframes anim {
}@-o-keyframes anim {
from {
top: calc(10% + 10px);
-o-transform: rotate(10deg);
Expand All @@ -33,8 +32,7 @@
-o-transform: rotate(0);
transform: rotate(0)
}
}
@keyframes anim {
}@keyframes anim {
from {
top: -webkit-calc(10% + 10px);
top: calc(10% + 10px);
Expand Down
3 changes: 1 addition & 2 deletions test/cases/placeholder-shown.out.css
@@ -1,6 +1,5 @@
:-ms-input-placeholder {
background: #eee
}
:placeholder-shown {
}:placeholder-shown {
background: #eee
}
15 changes: 5 additions & 10 deletions test/cases/placeholder.out.css
@@ -1,18 +1,13 @@
::-webkit-input-placeholder {
color: #999
}
:-moz-placeholder {
}:-moz-placeholder {
color: #999
}
::-moz-placeholder {
}::-moz-placeholder {
color: #999
}
:-ms-input-placeholder {
}:-ms-input-placeholder {
color: #999
}
::-ms-input-placeholder {
}::-ms-input-placeholder {
color: #999
}
::placeholder {
}::placeholder {
color: #999
}
3 changes: 1 addition & 2 deletions test/cases/viewport.out.css
@@ -1,6 +1,5 @@
@-ms-viewport {
width: device-width;
}
@viewport {
}@viewport {
width: device-width;
}

0 comments on commit 933052d

Please sign in to comment.