LengthTest.php
1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
class HTMLPurifier_AttrDef_CSS_LengthTest extends HTMLPurifier_AttrDefHarness
{
    public function test()
    {
        $this->def = new HTMLPurifier_AttrDef_CSS_Length();
        $this->assertDef('0');
        $this->assertDef('0px');
        $this->assertDef('4.5px');
        $this->assertDef('-4.5px');
        $this->assertDef('3ex');
        $this->assertDef('3em');
        $this->assertDef('3in');
        $this->assertDef('3cm');
        $this->assertDef('3mm');
        $this->assertDef('3pt');
        $this->assertDef('3pc');
        $this->assertDef('3PX', '3px');
        $this->assertDef('3', false);
        $this->assertDef('3miles', false);
    }
    public function testNonNegative()
    {
        $this->def = new HTMLPurifier_AttrDef_CSS_Length('0');
        $this->assertDef('3cm');
        $this->assertDef('-3mm', false);
    }
    public function testBounding()
    {
        $this->def = new HTMLPurifier_AttrDef_CSS_Length('-1in', '1in');
        $this->assertDef('1cm');
        $this->assertDef('-1cm');
        $this->assertDef('0');
        $this->assertDef('1em', false);
    }
}
// vim: et sw=4 sts=4
