Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update test results for PostCSS 8.4.19 #1485

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.1.1",
"nanospy": "^0.5.0",
"postcss": "^8.4.18",
"postcss": "^8.4.19",
"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: 3 additions & 1 deletion test/cases/example.out.css
@@ -1,6 +1,8 @@
::-moz-placeholder {
color: gray;
}::placeholder {
}

::placeholder {
color: gray;
}

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

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

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