implement hack described in comments [!]

This commit is contained in:
Adam D. Ruppe 2013-05-23 16:12:03 -04:00
parent e44b740688
commit af2ee83505
1 changed files with 1 additions and 0 deletions

1
dom.d
View File

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