Bold text';
$expect[0] = $inputs[0];
// legal inline and block
// as the parent element is considered FLOW
$inputs[1] = 'Blank
Block
';
$expect[1] = $inputs[1];
// illegal block in inline, element -> text
$inputs[2] = 'Illegal div.
';
$expect[2] = '<div>Illegal div.</div>';
// test of empty set that's required, resulting in removal of node
$inputs[3] = '';
$expect[3] = '';
// test illegal text which gets removed
$inputs[4] = '';
$expect[4] = '';
// test custom table definition
$inputs[5] = '';
$expect[5] = '';
$this->assertStrategyWorks($strategy, $inputs, $expect);
}
}
?>