mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
16 lines
322 B
PHP
16 lines
322 B
PHP
|
<?php
|
||
|
|
||
|
require_once 'HTMLPurifier/StrategyHarness.php';
|
||
|
require_once 'HTMLPurifier/Strategy/MakeWellFormed.php';
|
||
|
|
||
|
class HTMLPurifier_InjectorHarness extends HTMLPurifier_StrategyHarness
|
||
|
{
|
||
|
|
||
|
function setUp() {
|
||
|
parent::setUp();
|
||
|
$this->obj = new HTMLPurifier_Strategy_MakeWellFormed();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|