2006-08-16 17:25:25 +00:00
|
|
|
<?php
|
|
|
|
|
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');
|
2007-08-03 02:48:52 +00:00
|
|
|
$this->assertDef($d = "'John\\'s Font'");
|
|
|
|
$this->assertDef("John's Font", $d);
|
|
|
|
$this->assertDef($d = "'\xE5\xAE\x8B\xE4\xBD\x93'");
|
|
|
|
$this->assertDef("\xE5\xAE\x8B\xE4\xBD\x93", $d);
|
2006-08-16 17:25:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|