diff --git a/tests/css/CSSTest.php b/tests/css/CSSTest.php index 433560c..0d52c54 100644 --- a/tests/css/CSSTest.php +++ b/tests/css/CSSTest.php @@ -401,6 +401,12 @@ only screen and (min-device-pixel-ratio: 1.5) { '@media (min-width:320px){p{background-color:red}}@media (min-width:1281px){p{background-color:blue}}', ); + // https://github.com/matthiasmullie/minify/issues/103 + $tests[] = array( + 'background:url(http://example.com/test.png);', + 'background:url(http://example.com/test.png);', + ); + return $tests; }