PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / tests / HTMLPurifier / HTMLModule / ProprietaryTest.php
blob762ec6dd29a7de09b07183570a0003355609afab
1 <?php
3 class HTMLPurifier_HTMLModule_ProprietaryTest extends HTMLPurifier_HTMLModuleHarness
6 public function setUp()
8 parent::setUp();
9 $this->config->set('HTML.Proprietary', true);
12 public function testMarquee()
14 $this->assertResult(
15 '<span><marquee
16 width="20%"
17 height="34"
18 direction="left"
19 behavior="alternate"
20 scrolldelay="3"
21 scrollamount="5"
22 loop="4"
23 bgcolor="#FF0000"
24 hspace="5"
25 vspace="3"
26 ><div>Block</div><span>Inline</span>Text</marquee></span>'
32 // vim: et sw=4 sts=4