summaryrefslogtreecommitdiff
path: root/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php')
-rw-r--r--library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php b/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php
new file mode 100644
index 0000000000..762ec6dd29
--- /dev/null
+++ b/library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php
@@ -0,0 +1,32 @@
+<?php
+
+class HTMLPurifier_HTMLModule_ProprietaryTest extends HTMLPurifier_HTMLModuleHarness
+{
+
+ public function setUp()
+ {
+ parent::setUp();
+ $this->config->set('HTML.Proprietary', true);
+ }
+
+ public function testMarquee()
+ {
+ $this->assertResult(
+ '<span><marquee
+ width="20%"
+ height="34"
+ direction="left"
+ behavior="alternate"
+ scrolldelay="3"
+ scrollamount="5"
+ loop="4"
+ bgcolor="#FF0000"
+ hspace="5"
+ vspace="3"
+ ><div>Block</div><span>Inline</span>Text</marquee></span>'
+ );
+ }
+
+}
+
+// vim: et sw=4 sts=4