1 common_test.module | common_test_render_inline_full_page() |
Render a page with inline CSS.
File
- core/
modules/ simpletest/ tests/ common_test.module, line 145 - Helper module for the Common tests.
Code
function common_test_render_inline_full_page() {
$css = 'body { font-size: 254px; }';
backdrop_add_css($css, 'inline');
return 'This tests the inline CSS!';
}