|
7 | 7 | @import url( test.css);
|
8 | 8 | @import url( test.css );
|
9 | 9 | @import url(
|
10 |
| - test.css |
| 10 | +test.css |
11 | 11 | );
|
12 | 12 | @import url();
|
13 | 13 | @import url('');
|
|
53 | 53 | }
|
54 | 54 |
|
55 | 55 | .foo {
|
56 |
| - @import 'path.css'; |
| 56 | +@import 'path.css'; |
57 | 57 | }
|
58 | 58 |
|
59 | 59 | @import url('./relative.css');
|
@@ -158,3 +158,29 @@ st.css');
|
158 | 158 | /* Prefer relative */
|
159 | 159 | @import url(package/first.css);
|
160 | 160 | @import url(package/second.css);
|
| 161 | + |
| 162 | +@import url("./test.css") supports(display: flex); |
| 163 | +@import url("./test.css") supports(display: flex) screen and (min-width: 400px); |
| 164 | +@import url("./test.css") layer; |
| 165 | +@import url("./test.css") layer(default); |
| 166 | +@import url("./test.css") layer(default) supports(display: flex) screen and (min-width: 400px); |
| 167 | +@import url("http://example.com/style.css") supports(display: flex) screen and (min-width: 400px); |
| 168 | +@import url("./test.css")layer(default)supports(display: flex)screen and (min-width:400px); |
| 169 | +@import url("./test.css")screen and (min-width: 400px); |
| 170 | +@import url("./test.css") layer( default ) supports( display : flex ) screen and ( min-width : 400px ); |
| 171 | +@import url("./test.css") LAYER(DEFAULT) SUPPORTS(DISPLAY: FLEX) SCREEN AND (MIN-WIDTH: 400PX); |
| 172 | +@import url("./test.css") /* Comment */ layer(/* Comment */default/* Comment */) /* Comment */ supports(/* Comment */display/* Comment */:/* Comment */ flex/* Comment */)/* Comment */ screen/* Comment */ and/* Comment */ (/* Comment */min-width/* Comment */: /* Comment */400px/* Comment */); |
| 173 | +@import url(test.css) /* Comment */; |
| 174 | +@import /* Comment */ url(test.css) /* Comment */; |
| 175 | +@import url(test.css) /* Comment */ print and (orientation:landscape); |
| 176 | +@import /* Comment */ url(test.css) /* Comment */ print and (orientation:landscape); |
| 177 | + |
| 178 | +@import url("./import-with-supports.css") supports(display: flex); |
| 179 | +@import url("./import-with-supports-and-media.css") supports(display: flex) screen and (min-width: 400px); |
| 180 | +@import url("./import-with-layer.css") layer(default); |
| 181 | +@import url("./import-with-layer-unnamed.css") layer(default); |
| 182 | +@import url("./import-with-layer-and-supports.css") layer(default) supports(display: flex); |
| 183 | +@import url("./import-with-layer-and-supports-and-media.css") layer(default) supports(display: flex) screen and (min-width: 400px); |
| 184 | + |
| 185 | +/* TODO fix comments */ |
| 186 | +/* TODO check source maps generation */ |
0 commit comments