diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-07 07:41:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-07 07:41:46 +0000 |
commit | 1407c81632b6279c550a07f8f1b08120f19f344d (patch) | |
tree | 1a531ac353b090ec2487acd2e7e5692773fbbfe8 /modules/simpletest/tests | |
parent | 2aed502f93be8ce40a90f31759a8619389d96959 (diff) | |
download | brdo-1407c81632b6279c550a07f8f1b08120f19f344d.tar.gz brdo-1407c81632b6279c550a07f8f1b08120f19f344d.tar.bz2 |
#592018 by mverbaar, Jacine, et al: Re-organize styles across stylesheets from system.module and separate presentational and behavior-supporting styles.
Diffstat (limited to 'modules/simpletest/tests')
-rw-r--r-- | modules/simpletest/tests/common.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/simpletest/tests/common.test b/modules/simpletest/tests/common.test index 35a2a7f87..c44d2947e 100644 --- a/modules/simpletest/tests/common.test +++ b/modules/simpletest/tests/common.test @@ -618,13 +618,13 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase { drupal_add_css(drupal_get_path('module', 'simpletest') . '/simpletest.css'); // A few system CSS files, ordered in a strange way. $system_path = drupal_get_path('module', 'system'); - drupal_add_css($system_path . '/defaults.css', array('weight' => CSS_SYSTEM)); + drupal_add_css($system_path . '/system-behavior.css', array('weight' => CSS_SYSTEM)); drupal_add_css($system_path . '/system.css', array('weight' => CSS_SYSTEM - 10)); drupal_add_css($system_path . '/system-menus.css', array('weight' => CSS_SYSTEM)); $expected = array( $system_path . '/system.css', - $system_path . '/defaults.css', + $system_path . '/system-behavior.css', $system_path . '/system-menus.css', drupal_get_path('module', 'simpletest') . '/simpletest.css', ); |