mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
bfe474042f
This commit is a limited implementation of the "active formatting elements" algorithm implemented in HTML5, which preserves certain formatting elements such as <a> and <b> when exiting or entering nodes. Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
46 lines
1000 B
PHP
46 lines
1000 B
PHP
<?php
|
|
|
|
class HTMLPurifier_Strategy_CoreTest extends HTMLPurifier_StrategyHarness
|
|
{
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
$this->obj = new HTMLPurifier_Strategy_Core();
|
|
}
|
|
|
|
function testBlankInput() {
|
|
$this->assertResult('');
|
|
}
|
|
|
|
function testMakeWellFormed() {
|
|
$this->assertResult(
|
|
'<b>Make well formed.',
|
|
'<b>Make well formed.</b>'
|
|
);
|
|
}
|
|
|
|
function testFixNesting() {
|
|
$this->assertResult(
|
|
'<b><div>Fix nesting.</div></b>',
|
|
'<b></b><div><b>Fix nesting.</b></div><b></b>'
|
|
);
|
|
}
|
|
|
|
function testRemoveForeignElements() {
|
|
$this->assertResult(
|
|
'<asdf>Foreign element removal.</asdf>',
|
|
'Foreign element removal.'
|
|
);
|
|
}
|
|
|
|
function testFirstThree() {
|
|
$this->assertResult(
|
|
'<foo><b><div>All three.</div></b>',
|
|
'<b></b><div><b>All three.</b></div><b></b>'
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
// vim: et sw=4 sts=4
|