2006-11-22 18:55:15 +00:00
|
|
|
<?php
|
|
|
|
|
2007-08-01 14:06:59 +00:00
|
|
|
class HTMLPurifier_ChildDefHarness extends HTMLPurifier_ComplexHarness
|
2006-11-22 18:55:15 +00:00
|
|
|
{
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2013-07-16 11:56:14 +00:00
|
|
|
public function setUp()
|
|
|
|
{
|
2007-08-06 06:22:23 +00:00
|
|
|
parent::setUp();
|
2006-11-22 18:55:15 +00:00
|
|
|
$this->obj = null;
|
|
|
|
$this->func = 'validateChildren';
|
|
|
|
$this->to_html = true;
|
2013-10-21 05:18:59 +00:00
|
|
|
$this->to_node_list = true;
|
2006-11-22 18:55:15 +00:00
|
|
|
}
|
2008-12-06 07:28:20 +00:00
|
|
|
|
2006-11-22 18:55:15 +00:00
|
|
|
}
|
|
|
|
|
2008-12-06 09:24:59 +00:00
|
|
|
// vim: et sw=4 sts=4
|