CascadingStylesheetsTestCase::testRenderInlinePreprocess

7 common.test CascadingStylesheetsTestCase::testRenderInlinePreprocess()

Tests rendering inline stylesheets with preprocessing on.

File

modules/simpletest/tests/common.test, line 681
Tests for common.inc functionality.

Code

function testRenderInlinePreprocess() {
  $css = 'body { padding: 0px; }';
  $css_preprocessed = '<style type="text/css" media="all">' . "\n<!--/*--><![CDATA[/*><!--*/\n" . drupal_load_stylesheet_content($css, TRUE) . "\n/*]]>*/-->\n" . '</style>';
  drupal_add_css($css, array('type' => 'inline'));
  $styles = drupal_get_css();
  $this->assertEqual(trim($styles), $css_preprocessed, t('Rendering preprocessed inline CSS adds it to the page.'));
}
Login or register to post comments