Skip to content
Snippets Groups Projects
Commit 5cbf5d3b authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #510460 by tic2000: improved CSS test.

parent 3269eb2e
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -265,8 +265,8 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase {
* Tests rendering inline stylesheets through a full page request.
*/
function testRenderInlineFullPage() {
$css = 'body { padding: 0px; }';
$compressed_css = '<style type="text/css">' . drupal_load_stylesheet_content($css, TRUE) . '</style>';
$css = 'body { font-size: 254px; }';
$expected = 'font-size:254px;';
// Create a node, using the PHP filter that tests drupal_add_css().
$settings = array(
......@@ -278,7 +278,7 @@ class CascadingStylesheetsTestCase extends DrupalWebTestCase {
// Fetch the page.
$this->drupalGet('node/' . $node->nid);
$this->assertRaw($compressed_css, t('Inline stylesheets appear in the full page rendering.'));
$this->assertRaw($expected, t('Inline stylesheets appear in the full page rendering.'));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment