config->set ( 'HTML.Trusted', true );
$this->config->set ( 'Output.CommentScriptContents', false );
}
public function testDefaultRemoval() {
$this->config->set ( 'HTML.Trusted', false );
$this->assertResult ( '', '' );
}
public function testPreserve() {
$this->assertResult ( '' );
}
public function testCDATAEnclosure() {
$this->assertResult ( '' );
}
public function testAllAttributes() {
$this->assertResult ( '' );
}
public function testUnsupportedAttributes() {
$this->assertResult ( '', '' );
}
}
// vim: et sw=4 sts=4