2006-08-06 01:03:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/AttrDefHarness.php';
|
2007-02-14 20:38:51 +00:00
|
|
|
require_once 'HTMLPurifier/AttrDef/HTML/Pixels.php';
|
2006-08-06 01:03:48 +00:00
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_HTML_PixelsTest extends HTMLPurifier_AttrDefHarness
|
2006-08-06 01:03:48 +00:00
|
|
|
{
|
|
|
|
|
2006-08-06 01:30:54 +00:00
|
|
|
function setup() {
|
2007-02-14 20:38:51 +00:00
|
|
|
$this->def = new HTMLPurifier_AttrDef_HTML_Pixels();
|
2006-08-06 01:30:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function test() {
|
2006-08-06 01:03:48 +00:00
|
|
|
|
|
|
|
$this->assertDef('1');
|
|
|
|
$this->assertDef('0');
|
|
|
|
|
|
|
|
$this->assertDef('2px', '2'); // rm px suffix
|
|
|
|
|
|
|
|
$this->assertDef('dfs', false); // totally invalid value
|
|
|
|
|
|
|
|
// conceivably we could repair this value, but we won't for now
|
|
|
|
$this->assertDef('9in', false);
|
|
|
|
|
|
|
|
// test trim
|
|
|
|
$this->assertDef(' 45 ', '45');
|
|
|
|
|
|
|
|
// no negatives
|
|
|
|
$this->assertDef('-2', '0');
|
|
|
|
|
|
|
|
// remove empty
|
|
|
|
$this->assertDef('', false);
|
|
|
|
|
|
|
|
// round down
|
|
|
|
$this->assertDef('4.9', '4');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|