blob: c6c004e911db01edb357c1a8ef4a1f5e8ecb24c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
body {
background: url("#foobar");
background: url("http:foobar");
background: url("https:foobar");
background: url("data:foobar");
background: url("chrome:foobar");
background: url("//foobar");
background: url();
}
/* @import url("non_exist.css") */
/* url("non_exist.png") */
/*
@import url("non_exist.css")
url("non_exist.png")
@import url(other.css)
*/
body {
background: #d3d6d8 /*url("does.not.exist.png")*/ url(/static/cached/img/relative.png);
}
body {
background: #d3d6d8 /* url("does.not.exist.png") */ url(/static/cached/img/relative.png) /*url("does.not.exist.either.png")*/;
}
|