mirror of
https://github.com/mrclay/minify.git
synced 2025-01-18 05:38:16 +01:00
18 lines
796 B
CSS
18 lines
796 B
CSS
@import "foo.css";
|
|
@import 'bar/foo.css' print;
|
|
@import '../bar/foo.css' print;
|
|
@import '../../foo.css' print;
|
|
@import '/css/foo.css'; /* abs, should not alter */
|
|
@import 'http://foo.com/css/foo.css'; /* scheme, should not alter */
|
|
@import url(../foo.css) tv, projection;
|
|
@import url("/css/foo.css"); /* abs, should not alter */
|
|
@import url(/css2/foo.css); /* abs, should not alter */
|
|
@import url(foo:bar); /* scheme, should not alter */
|
|
foo {background:url('bar/foo.png')}
|
|
foo {background:url('http://foo.com/css/foo.css');} /* scheme, should not alter */
|
|
foo {background:url("//foo.com/css/foo.css");} /* protocol relative, should not alter */
|
|
foo {background:url(foo:bar);} /* scheme, should not alter */
|
|
foo {background:url("foo bar.jpg");}
|
|
@import url('foo bar.css');
|
|
@import "foo bar.css";
|