1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-31 03:10:09 +02:00

Fix autoparagraph bug with non-inline elements.

Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
Edward Z. Yang
2010-02-15 02:55:33 -05:00
parent bde4de3c78
commit 694583259c
3 changed files with 20 additions and 10 deletions

View File

@@ -497,6 +497,13 @@ Bar</div>",
);
}
function testAutoClose() {
$this->assertResult(
'<p></p>
<hr />'
);
}
function testErrorNeeded() {
$this->config->set('HTML.Allowed', 'b');
$this->expectError('Cannot enable AutoParagraph injector because p is not allowed');