From 06768ed6f63b60b68133ab3365de23caebcd5266 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 9 May 2013 10:33:15 -0400 Subject: [PATCH] non-closed tag parsing --- dom.d | 1 - 1 file changed, 1 deletion(-) diff --git a/dom.d b/dom.d index 2b58c42..1a979ec 100644 --- a/dom.d +++ b/dom.d @@ -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 '>'; }