Always quote the contents of url() in CSS.
[htmlpurifier.git] / tests / HTMLPurifier / AttrDef / CSS / BackgroundTest.php
blobb36d09a6b595c424983e063708ffe8cd5b964df0
1 <?php
3 class HTMLPurifier_AttrDef_CSS_BackgroundTest extends HTMLPurifier_AttrDefHarness
6 function test() {
8 $config = HTMLPurifier_Config::createDefault();
9 $this->def = new HTMLPurifier_AttrDef_CSS_Background($config);
11 $valid = '#333 url(\'chess.png\') repeat fixed 50% top';
12 $this->assertDef($valid);
13 $this->assertDef('url("chess.png") #333 50% top repeat fixed', $valid);
14 $this->assertDef(
15 'rgb(34, 56, 33) url(chess.png) repeat fixed top',
16 'rgb(34,56,33) url(\'chess.png\') repeat fixed top'
23 // vim: et sw=4 sts=4