function CascadingStylesheetsTestCase::testRenderInlinePreprocess

7.x common.test CascadingStylesheetsTestCase::testRenderInlinePreprocess()

Tests rendering inline stylesheets with preprocessing on.

File

drupal-7.x/modules/simpletest/tests/common.test, line 681
Tests for common.inc functionality.

Class

CascadingStylesheetsTestCase
Test the Drupal CSS system.

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, 'Rendering preprocessed inline CSS adds it to the page.');
}