mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-10 07:38:41 +00:00
d5e75f2616
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@174 48356398-32a2-884e-a903-53898d9a118a
28 lines
749 B
PHP
28 lines
749 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/AttrDefHarness.php';
|
|
require_once 'HTMLPurifier/AttrDef/NumberSpan.php';
|
|
|
|
class HTMLPurifier_AttrDef_NumberSpanTest extends HTMLPurifier_AttrDefHarness
|
|
{
|
|
|
|
function test() {
|
|
|
|
$this->def = new HTMLPurifier_AttrDef_NumberSpan();
|
|
|
|
// this one requires a little explanation. A colspan="1" shouldn't
|
|
// exist at all: it's just a dud, since the default value is already
|
|
// supplied
|
|
$this->assertDef('1', false);
|
|
|
|
$this->assertDef('4');
|
|
$this->assertDef('4.5', '4'); // round down (truncate)
|
|
$this->assertDef('0', false);
|
|
$this->assertDef('-4', false);
|
|
$this->assertDef('asdf', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|