您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
341B

  1. <?php
  2. class HTMLPurifier_AttrDef_TextTest extends HTMLPurifier_AttrDefHarness
  3. {
  4. public function test()
  5. {
  6. $this->def = new HTMLPurifier_AttrDef_Text();
  7. $this->assertDef('This is spiffy text!');
  8. $this->assertDef(" Casual\tCDATA parse\ncheck. ", 'Casual CDATA parse check.');
  9. }
  10. }
  11. // vim: et sw=4 sts=4