Don't use PHP4-style constructors
[htmlpurifier.git] / tests / HTMLPurifier / AttrDef / CSS / FilterTest.php
blob19b2d8d700ebd6232dd3492d4ca016fd12530b36
1 <?php
3 class HTMLPurifier_AttrDef_CSS_FilterTest extends HTMLPurifier_AttrDefHarness
6 public function test()
8 $this->def = new HTMLPurifier_AttrDef_CSS_Filter();
10 $this->assertDef('none');
12 $this->assertDef('alpha(opacity=0)');
13 $this->assertDef('alpha(opacity=100)');
14 $this->assertDef('alpha(opacity=50)');
15 $this->assertDef('alpha(opacity=342)', 'alpha(opacity=100)');
16 $this->assertDef('alpha(opacity=-23)', 'alpha(opacity=0)');
18 $this->assertDef('alpha ( opacity = 0 )', 'alpha(opacity=0)');
19 $this->assertDef('alpha(opacity=0,opacity=100)', 'alpha(opacity=0)');
21 $this->assertDef('progid:DXImageTransform.Microsoft.Alpha(opacity=20)');
23 $this->assertDef('progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)', false);
29 // vim: et sw=4 sts=4