3 class HTMLPurifier_Strategy_CoreTest
extends HTMLPurifier_StrategyHarness
6 public function setUp()
9 $this->obj
= new HTMLPurifier_Strategy_Core();
12 public function testBlankInput()
14 $this->assertResult('');
17 public function testMakeWellFormed()
20 '<b>Make well formed.',
21 '<b>Make well formed.</b>'
25 public function testFixNesting()
28 '<b><div>Fix nesting.</div></b>',
29 '<b></b><div><b>Fix nesting.</b></div><b></b>'
33 public function testRemoveForeignElements()
36 '<asdf>Foreign element removal.</asdf>',
37 'Foreign element removal.'
41 public function testFirstThree()
44 '<foo><b><div>All three.</div></b>',
45 '<b></b><div><b>All three.</b></div><b></b>'