Skip to content

Commit 8db075f

Browse files
test: more
1 parent 62bf216 commit 8db075f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

test/fixtures/webpackIgnore.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@
5656
background: url("./url/img.png"), /** webpackIgnore: true */ /** webpackIgnore: false */ url("./url/img.png");
5757
}
5858

59+
.class {
60+
color: red;
61+
background: url("./url/img.png"), /** webpackIgnore: false */ /** webpackIgnore: true */ url("./url/img.png");
62+
}
63+
5964
.class {
6065
background:
6166
url("./url/img.png"),
@@ -209,7 +214,25 @@
209214
background: url("./url/img.png"), /** webpackIgnore: true */url("./url/img.png");
210215
}
211216

217+
.class {
218+
color: red;
219+
background: url("./url/img.png"), /** webpackIgnore: true */ url("./url/img.png");
220+
}
221+
212222
.class {
213223
color: red;
214224
background: url("./url/img.png")/** webpackIgnore: true */, url("./url/img.png");
225+
}
226+
227+
.class {
228+
background-image:
229+
image-set(
230+
url(./url/img.png) 2x /*webpackIgnore: true*/,
231+
url(./url/img.png) /*webpackIgnore: true*/ 3x,
232+
url(./url/img.png) 4x
233+
),
234+
/*webpackIgnore: false*/
235+
url('./url/img.png'),
236+
/*webpackIgnore: true*/
237+
url('./url/img.png');
215238
}

0 commit comments

Comments
 (0)