We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65c5444 commit c13f070Copy full SHA for c13f070
fixtures/css/autoprefixer_test.css
@@ -1,3 +1,3 @@
1
-:fullscreen a {
2
- display: flex
+.example {
+ backdrop-filter: blur(10px);
3
}
test/functional.js
@@ -1037,15 +1037,15 @@ module.exports = {
1037
// check that the autoprefixer did its work!
1038
webpackAssert.assertOutputFileContains(
1039
'styles.css',
1040
- '-webkit-full-screen'
+ '-webkit-backdrop-filter'
1041
);
1042
1043
// check that the .postcss file was also processed
1044
// correctly (it also @import the autoprefixer_test.css
1045
// file)
1046
1047
'postcss.css',
1048
1049
1050
1051
done();
0 commit comments