]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blob - maintenance/benchmarks/cssmin/styles.css
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / maintenance / benchmarks / cssmin / styles.css
1 /**
2  * Header
3  */
4
5 .foo {
6         background: url(wiki.png);
7 }
8
9 .foo {
10         background: url(unknown.png);
11 }
12
13 .foo {
14         background: url(https://example.org/foo.png);
15         background: url('https://example.org/foo.png');
16         background: url("https://example.org/foo.png");
17 }
18
19 .foo {
20         /* @embed */
21         background: url(wiki.png);
22 }
23
24 .foo {
25         /* @embed */
26         background: url(circle.svg);
27 }
28
29 .foo {
30         /* @embed */
31         background: url(wiki.png), url(wiki.png);
32 }