mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-23 17:01:51 +00:00
25 lines
587 B
PHP
25 lines
587 B
PHP
<?php
|
|
|
|
class HTMLPurifier_AttrDef_CSS_RatioTest extends HTMLPurifier_AttrDefHarness
|
|
{
|
|
|
|
public function test()
|
|
{
|
|
$this->def = new HTMLPurifier_AttrDef_CSS_Ratio();
|
|
|
|
$this->assertDef('1/2');
|
|
$this->assertDef('1 / 2', '1/2');
|
|
$this->assertDef('1');
|
|
$this->assertDef('1/0');
|
|
$this->assertDef('0/1');
|
|
|
|
$this->assertDef('1/2/3', false);
|
|
$this->assertDef('/2/3', false);
|
|
$this->assertDef('/12', false);
|
|
$this->assertDef('1/', false);
|
|
$this->assertDef('asdf', false);
|
|
}
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|