summaryrefslogtreecommitdiff
path: root/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/NameTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/NameTest.php')
-rw-r--r--library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/NameTest.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/NameTest.php b/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/NameTest.php
new file mode 100644
index 0000000000..6aa2c9957b
--- /dev/null
+++ b/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/NameTest.php
@@ -0,0 +1,36 @@
+<?php
+
+class HTMLPurifier_HTMLModule_NameTest extends HTMLPurifier_HTMLModuleHarness
+{
+
+ public function setUp()
+ {
+ parent::setUp();
+ }
+
+ public function testBasicUse()
+ {
+ $this->config->set('Attr.EnableID', true);
+ $this->assertResult(
+ '<a name="foo">bar</a>'
+ );
+ }
+
+ public function testCDATA()
+ {
+ $this->config->set('HTML.Attr.Name.UseCDATA', true);
+ $this->assertResult(
+ '<a name="2">Baz</a><a name="2">Bar</a>'
+ );
+ }
+
+ public function testCDATAWithHeavyTidy()
+ {
+ $this->config->set('HTML.Attr.Name.UseCDATA', true);
+ $this->config->set('HTML.TidyLevel', 'heavy');
+ $this->assertResult('<a name="2">Baz</a>');
+ }
+
+}
+
+// vim: et sw=4 sts=4