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

[2.1.0] Fix bug in auto-paragraphing: empty tags should be treated like start tags too.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1269 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2007-06-29 00:24:59 +00:00
parent 02051e465c
commit 2e7e411491
4 changed files with 38 additions and 31 deletions

View File

@@ -237,6 +237,11 @@ Par1
'<p>Par1</p><p><b>Par2</b></p>'
);
$this->assertResult(
'<img /> Foo',
'<p><img /> Foo</p>'
);
}
function testInlineRootNode() {