Merge "Also set the queue types map when rebuilding the ready queue map"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Thu, 5 Jun 2014 17:07:22 +0000 (17:07 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Thu, 5 Jun 2014 17:07:22 +0000 (17:07 +0000)
tests/phpunit/includes/libs/CSSMinTest.php

index 5475a82..bb5e398 100644 (file)
@@ -202,6 +202,16 @@ class CSSMinTest extends MediaWikiTestCase {
                                'foo { /* @embed */ background: url(red.gif); }',
                                "foo { background: url($red); background: url(http://localhost/w/red.gif?timestamp)!ie; }",
                        ),
+                       array(
+                               'Can not re-embed data: URIs',
+                               "foo { /* @embed */ background: url($red); }",
+                               "foo { background: url($red); }",
+                       ),
+                       array(
+                               'Can not remap data: URIs',
+                               "foo { background: url($red); }",
+                               "foo { background: url($red); }",
+                       ),
                        array(
                                'Can not embed remote URLs',
                                'foo { /* @embed */ background: url(http://example.org/w/foo.png); }',