Files
faveo/vendor/htmlpurifier/tests/HTMLPurifier/HTMLModule/ProprietaryTest.php
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

33 lines
734 B
PHP

<?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