PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / tests / HTMLPurifier / AttrDef / CSS / BackgroundTest.php
blobaa18d096b10a39f907d172b52df481579b253c33
1 <?php
3 class HTMLPurifier_AttrDef_CSS_BackgroundTest extends HTMLPurifier_AttrDefHarness
6 public 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