summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests/project/documents/cached/css/ignored.css
blob: ba0f24c2430d2b8ef4933a5b89fd18055a7ea1f3 (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
32
33
34
35
36
37
38
39
40
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")*/;
}

body {
    content: "url(non_exist.png)";
    content: 'url(non_exist.png)';
}

/* Tailwind-style selector */
.tw\:bg-\[url\(\'non_exist.png\'\)\] { background: url(../img/relative.png); }
body { font-family: 'sans-serif'; }