Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

ProprietaryTest.php 734B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. class HTMLPurifier_HTMLModule_ProprietaryTest extends HTMLPurifier_HTMLModuleHarness
  3. {
  4. public function setUp()
  5. {
  6. parent::setUp();
  7. $this->config->set('HTML.Proprietary', true);
  8. }
  9. public function testMarquee()
  10. {
  11. $this->assertResult(
  12. '<span><marquee
  13. width="20%"
  14. height="34"
  15. direction="left"
  16. behavior="alternate"
  17. scrolldelay="3"
  18. scrollamount="5"
  19. loop="4"
  20. bgcolor="#FF0000"
  21. hspace="5"
  22. vspace="3"
  23. ><div>Block</div><span>Inline</span>Text</marquee></span>'
  24. );
  25. }
  26. }
  27. // vim: et sw=4 sts=4