2006-08-16 17:25:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once 'HTMLPurifier/AttrDefHarness.php';
|
2007-02-14 20:38:51 +00:00
|
|
|
require_once 'HTMLPurifier/AttrDef/CSS/FontFamily.php';
|
2006-08-16 17:25:25 +00:00
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
class HTMLPurifier_AttrDef_CSS_FontFamilyTest extends HTMLPurifier_AttrDefHarness
|
2006-08-16 17:25:25 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
function test() {
|
|
|
|
|
2007-02-14 20:38:51 +00:00
|
|
|
$this->def = new HTMLPurifier_AttrDef_CSS_FontFamily();
|
2006-08-16 17:25:25 +00:00
|
|
|
|
|
|
|
$this->assertDef('Gill, Helvetica, sans-serif');
|
|
|
|
$this->assertDef('\'Times New Roman\', serif');
|
|
|
|
$this->assertDef('"Times New Roman"', "'Times New Roman'");
|
|
|
|
$this->assertDef('01234');
|
|
|
|
$this->assertDef(',', false);
|
|
|
|
$this->assertDef('Times New Roman, serif', '\'Times New Roman\', serif');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|