X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/maintenance/benchmarks/cssmin/styles.css diff --git a/maintenance/benchmarks/cssmin/styles.css b/maintenance/benchmarks/cssmin/styles.css new file mode 100644 index 00000000..3cc15206 --- /dev/null +++ b/maintenance/benchmarks/cssmin/styles.css @@ -0,0 +1,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); +}