選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

NativeTest.php 227B

12345678910111213
  1. <?php
  2. class HTMLPurifier_VarParser_NativeTest extends HTMLPurifier_VarParserHarness
  3. {
  4. public function testValidateSimple()
  5. {
  6. $this->assertValid('"foo\\\\"', 'string', 'foo\\');
  7. }
  8. }
  9. // vim: et sw=4 sts=4