obj = new HTMLPurifier_ChildDef_Chameleon( 'b | i', // allowed only when in inline context 'b | i | div' // allowed only when in block context ); $this->assertResult( 'Allowed.', true, array(), array('ParentType' => 'inline') ); $this->assertResult( '
Not allowed.
', '', array(), array('ParentType' => 'inline') ); $this->assertResult( '
Allowed.
', true, array(), array('ParentType' => 'block') ); } } ?>