2007-04-30 21:19:15 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class HTMLPurifier_AttrDef_HTML_FrameTargetTest extends HTMLPurifier_AttrDefHarness
|
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-04-30 21:19:15 +00:00
|
|
|
function setup() {
|
|
|
|
parent::setup();
|
|
|
|
$this->def = new HTMLPurifier_AttrDef_HTML_FrameTarget();
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-04-30 21:19:15 +00:00
|
|
|
function testNoneAllowed() {
|
|
|
|
$this->assertDef('', false);
|
|
|
|
$this->assertDef('foo', false);
|
|
|
|
$this->assertDef('_blank', false);
|
|
|
|
$this->assertDef('baz', false);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-04-30 21:19:15 +00:00
|
|
|
function test() {
|
2009-02-20 00:17:49 +00:00
|
|
|
$this->config->set('Attr.AllowedFrameTargets', 'foo,_blank');
|
2007-04-30 21:19:15 +00:00
|
|
|
$this->assertDef('', false);
|
|
|
|
$this->assertDef('foo');
|
|
|
|
$this->assertDef('_blank');
|
|
|
|
$this->assertDef('baz', false);
|
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2007-04-30 21:19:15 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|