assertResult(
'', 'foo();'
);
// enabled
$this->assertResult(
'', true,
array('HTML.Trusted' => true)
);
// max
$this->assertResult(
'', true,
array('HTML.Trusted' => true, 'Core.CommentScriptContents' => false)
);
// unsupported
$this->assertResult(
'',
'',
array('HTML.Trusted' => true, 'Core.CommentScriptContents' => false)
);
// invalid children
$this->assertResult(
'',
'',
array('HTML.Trusted' => true, 'Core.CommentScriptContents' => false)
);
}
}
?>