2006-08-06 01:30:54 +00:00
|
|
|
<?php
|
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_HTML_LengthTest extends HTMLPurifier_AttrDef_HTML_PixelsTest
|
2006-08-06 01:30:54 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
function setup() {
|
2007-02-14 20:38:51 +00:00
|
|
|
$this->def = new HTMLPurifier_AttrDef_HTML_Length();
|
2006-08-06 01:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
|
|
|
|
// pixel check
|
|
|
|
parent::test();
|
|
|
|
|
|
|
|
// percent check
|
|
|
|
$this->assertDef('25%');
|
|
|
|
|
|
|
|
// Firefox maintains percent, so will we
|
|
|
|
$this->assertDef('0%');
|
|
|
|
|
|
|
|
// 0% <= percent <= 100%
|
|
|
|
$this->assertDef('-15%', '0%');
|
|
|
|
$this->assertDef('120%', '100%');
|
|
|
|
|
|
|
|
// fractional percents, apparently, aren't allowed
|
|
|
|
$this->assertDef('56.5%', '56%');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|