fix the switch case the pr created

This commit is contained in:
Adam D. Ruppe 2020-05-17 09:20:23 -04:00
parent 4f9d5f1f37
commit c3c863d867
1 changed files with 3 additions and 2 deletions

5
dom.d
View File

@ -804,9 +804,10 @@ class Document : FileResource {
return Ele(1, null, tname); // closing tag reports itself here
case ' ': // assume it isn't a real element...
if(strict)
if(strict) {
parseError("bad markup - improperly placed <");
else
assert(0); // parseError always throws
} else
return Ele(0, TextNode.fromUndecodedString(this, "<"), null);
default: