diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-07 07:45:03 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-07 07:45:03 +0000 |
commit | 436ddca9fbf0eb955a06b5262e8f2ba1e9d25afd (patch) | |
tree | e581a6713185f02be31cb7109769d6c7f84f13b2 /modules/simpletest/tests/common.test | |
parent | 1407c81632b6279c550a07f8f1b08120f19f344d (diff) | |
download | brdo-436ddca9fbf0eb955a06b5262e8f2ba1e9d25afd.tar.gz brdo-436ddca9fbf0eb955a06b5262e8f2ba1e9d25afd.tar.bz2 |
#265719 by kkaefer, JacobSingh, ksenzee, and rfay: Fixed CSS aggregator produces invalid code and directory names for @import files which breaks IE (with tests).
Diffstat (limited to 'modules/simpletest/tests/common.test')
-rw-r--r-- | modules/simpletest/tests/common.test | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/simpletest/tests/common.test b/modules/simpletest/tests/common.test index c44d2947e..e1a45dad2 100644 --- a/modules/simpletest/tests/common.test +++ b/modules/simpletest/tests/common.test @@ -757,7 +757,9 @@ class CascadingStylesheetsUnitTest extends DrupalUnitTestCase { * * This can be enhanced by adding additional CSS files with variant test cases. * Currently, this is specifically testing to make sure that whitespace - * is treated with adequate respect (not arbitrarily removing linefeeds). + * is treated with adequate respect (see http://drupal.org/node/472820) and + * that image paths in imported files are preserved (see + * http://drupal.org/node/265719). */ function testLoadCssBasic() { // Array of files to test living in 'simpletest/files/css_test_files/'. @@ -766,6 +768,7 @@ class CascadingStylesheetsUnitTest extends DrupalUnitTestCase { // - Optimized expected content: name.css.optimized.css $testfiles = array( 'css_input_without_import.css', + 'css_input_with_import.css' ); $path = drupal_get_path('module', 'simpletest') . '/files/css_test_files'; foreach ($testfiles as $file) { |