Bugfix: _blank not blank.
[htmlpurifier.git] / tests / HTMLPurifier / HTMLModule / TargetBlankTest.php
blobeb6208a831563484ed405ad27edcb553a4b37a5c
1 <?php
3 class HTMLPurifier_HTMLModule_TargetBlankTest extends HTMLPurifier_HTMLModuleHarness
6 function setUp() {
7 parent::setUp();
8 $this->config->set('HTML.TargetBlank', true);
11 function testTargetBlank() {
12 $this->assertResult(
13 '<a href="http://google.com">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>',
14 '<a href="http://google.com" target="_blank">a</a><a href="/local">b</a><a href="mailto:foo@example.com">c</a>'
20 // vim: et sw=4 sts=4