TargetBlankTest.php 542 B

1234567891011121314151617181920
  1. <?php
  2. class HTMLPurifier_HTMLModule_TargetBlankTest extends HTMLPurifier_HTMLModuleHarness
  3. {
  4. function setUp() {
  5. parent::setUp();
  6. $this->config->set('HTML.TargetBlank', true);
  7. }
  8. function testTargetBlank() {
  9. $this->assertResult(
  10. '<a href="http://google.com">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>',
  11. '<a href="http://google.com" target="_blank">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>'
  12. );
  13. }
  14. }
  15. // vim: et sw=4 sts=4