mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-01-23 22:01:53 +00:00
678a593e62
git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/branches/strict@1352 48356398-32a2-884e-a903-53898d9a118a
17 lines
300 B
PHP
17 lines
300 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/ComplexHarness.php';
|
|
|
|
class HTMLPurifier_StrategyHarness extends HTMLPurifier_ComplexHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->func = 'execute';
|
|
$this->to_tokens = true;
|
|
$this->to_html = true;
|
|
}
|
|
|
|
}
|
|
|