non-closed tag parsing

This commit is contained in:
Adam D. Ruppe 2013-05-09 10:33:15 -04:00
parent 54fa15eabe
commit 06768ed6f6
1 changed files with 0 additions and 1 deletions

1
dom.d
View File

@ -3816,7 +3816,6 @@ class Document : FileResource {
if(!strict && data[pos] == '<') {
// this is the broken tag that doesn't have a > at the end
// let's insert one as a hack
data = data[0 .. pos-1] ~ ">" ~ data[pos .. $];
goto case '>';
}