2011-01-19 18:50:48 +00:00
|
|
|
@import "/_test_files/css_uriRewriter/foo.css";
|
|
|
|
@import '/_test_files/css_uriRewriter/bar/foo.css' print;
|
|
|
|
@import '/_test_files/bar/foo.css' print;
|
|
|
|
@import '/foo.css' print;
|
|
|
|
@import '/css/foo.css'; /* abs, should not alter */
|
2014-02-04 10:31:00 -05:00
|
|
|
@import 'http://foo.com/css/foo.css'; /* scheme, should not alter */
|
2011-01-19 18:50:48 +00:00
|
|
|
@import url(/_test_files/foo.css) tv, projection;
|
|
|
|
@import url("/css/foo.css"); /* abs, should not alter */
|
|
|
|
@import url(/css2/foo.css); /* abs, should not alter */
|
2014-02-04 10:31:00 -05:00
|
|
|
@import url(foo:bar); /* scheme, should not alter */
|
2011-01-19 18:50:48 +00:00
|
|
|
foo {background:url('/_test_files/css_uriRewriter/bar/foo.png')}
|
2014-02-04 10:31:00 -05:00
|
|
|
foo {background:url('http://foo.com/css/foo.css');} /* scheme, should not alter */
|
2011-01-19 18:50:48 +00:00
|
|
|
foo {background:url("//foo.com/css/foo.css");} /* protocol relative, should not alter */
|
2014-02-04 10:31:00 -05:00
|
|
|
foo {background:url(foo:bar);} /* scheme, should not alter */
|
2014-04-03 19:52:23 -04:00
|
|
|
foo {background:url("/_test_files/css_uriRewriter/foo bar.jpg");}
|
|
|
|
@import url('/_test_files/css_uriRewriter/foo bar.css');
|
|
|
|
@import "/_test_files/css_uriRewriter/foo bar.css";
|