Add vim modelines to all files.
[htmlpurifier.git] / tests / HTMLPurifier / AttrDef / CSS / BackgroundTest.php
blobbf2f24e0c36c1090539daeee88172f9687c51fd3
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