mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-08 23:08:42 +00:00
77d9e05a07
- Fixed buggy chameleon-support for ins and del . Removed context variable ParentType, replaced with IsInline, which is false when you're not inline and an integer of the parent that caused you to become inline when you are (so possibly zero) . Removed ElementDef->type in favor of ElementDef->descendants_are_inline and HTMLDefinition->content_sets . StrictBlockquote now reports what elements its supposed to allow, rather than what it does allow . Removed HTMLDefinition->info_flow_elements in favor of HTMLDefinition->content_sets['Flow'] . Removed redundant "exclusionary" definitions from DTD roster . StrictBlockquote now requires a construction parameter as if it were an Required ChildDef, this is the "real" set of allowed elements git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@710 48356398-32a2-884e-a903-53898d9a118a
35 lines
859 B
PHP
35 lines
859 B
PHP
<?php
|
|
|
|
require_once 'HTMLPurifier/ChildDefHarness.php';
|
|
require_once 'HTMLPurifier/ChildDef/Chameleon.php';
|
|
|
|
class HTMLPurifier_ChildDef_ChameleonTest extends HTMLPurifier_ChildDefHarness
|
|
{
|
|
|
|
function test() {
|
|
|
|
$this->obj = new HTMLPurifier_ChildDef_Chameleon(
|
|
'b | i', // allowed only when in inline context
|
|
'b | i | div' // allowed only when in block context
|
|
);
|
|
|
|
$this->assertResult(
|
|
'<b>Allowed.</b>', true,
|
|
array(), array('IsInline' => true)
|
|
);
|
|
|
|
$this->assertResult(
|
|
'<div>Not allowed.</div>', '',
|
|
array(), array('IsInline' => true)
|
|
);
|
|
|
|
$this->assertResult(
|
|
'<div>Allowed.</div>', true,
|
|
array(), array('IsInline' => false)
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|