summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/benchmarks/cssmin/styles.css
blob: 3cc15206a0135917ff581ce8268c4788e73ea4fc (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
/**
 * Header
 */

.foo {
	background: url(wiki.png);
}

.foo {
	background: url(unknown.png);
}

.foo {
	background: url(https://example.org/foo.png);
	background: url('https://example.org/foo.png');
	background: url("https://example.org/foo.png");
}

.foo {
	/* @embed */
	background: url(wiki.png);
}

.foo {
	/* @embed */
	background: url(circle.svg);
}

.foo {
	/* @embed */
	background: url(wiki.png), url(wiki.png);
}