diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-03-27 11:26:04 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-03-27 13:00:15 +0000 |
| commit | ed285daa12bd7bf5fef583fe91b97c238dbf606f (patch) | |
| tree | 5bc90b8548789a587609d8dbc030c571ea831b23 /library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php | |
| parent | e7fa959ef1d52de051e5ac63e0debdbe47939a3f (diff) | |
| download | webtrees-ed285daa12bd7bf5fef583fe91b97c238dbf606f.tar.gz webtrees-ed285daa12bd7bf5fef583fe91b97c238dbf606f.tar.bz2 webtrees-ed285daa12bd7bf5fef583fe91b97c238dbf606f.zip | |
Install libraries using composer; use faster autoloader; update to latest versions
Diffstat (limited to 'library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php')
| -rw-r--r-- | library/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php | 32 |
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 |
