Skip to content

Commit c13f070

Browse files
committed
updating test for a css feature that still requires vendor prefix
1 parent 65c5444 commit c13f070

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

fixtures/css/autoprefixer_test.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
:fullscreen a {
2-
display: flex
1+
.example {
2+
backdrop-filter: blur(10px);
33
}

test/functional.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,15 +1037,15 @@ module.exports = {
10371037
// check that the autoprefixer did its work!
10381038
webpackAssert.assertOutputFileContains(
10391039
'styles.css',
1040-
'-webkit-full-screen'
1040+
'-webkit-backdrop-filter'
10411041
);
10421042

10431043
// check that the .postcss file was also processed
10441044
// correctly (it also @import the autoprefixer_test.css
10451045
// file)
10461046
webpackAssert.assertOutputFileContains(
10471047
'postcss.css',
1048-
'-webkit-full-screen'
1048+
'-webkit-backdrop-filter'
10491049
);
10501050

10511051
done();

0 commit comments

Comments
 (0)