Skip to content
Snippets Groups Projects
Commit 0499ebed authored by Andreas Gohr's avatar Andreas Gohr
Browse files

added (failing) test case for broken jquery ui compression

parent fc8dbb92
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,13 @@ class css_css_compress_test extends DokuWikiTest {
$this->assertEquals($expected, $input);
}
function test_data() {
$input = 'list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);';
$expect = 'list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);';
$this->assertEquals($expect, css_compress($input));
}
}
//Setup VIM: ex: et ts=4 :
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment