more garbage handling

This commit is contained in:
Adam D. Ruppe 2013-05-23 08:45:02 -04:00
parent 3077ffe763
commit 8159da80c5
1 changed files with 14 additions and 0 deletions

14
dom.d
View File

@ -3446,6 +3446,11 @@ class Document : FileResource {
else
break; // e.g. <a href="something" <img src="poo" /></a>. The > should have been after the href, but some shitty files don't do that right and the browser handles it, so we will too, by pretending the > was indeed there
pos++;
if(pos == data.length)
if(strict)
throw new Exception("unterminated attribute name");
else
break;
}
if(!caseSensitive)
@ -3801,11 +3806,20 @@ class Document : FileResource {
default: // it is an attribute
string attrName = readAttributeName();
string attrValue = attrName;
if(pos >= data.length)
if(strict)
assert(0, "this should have thrown in readAttributeName");
else {
data ~= ">";
goto blankValue;
}
if(data[pos] == '=') {
pos++;
attrValue = readAttributeValue();
}
blankValue:
if(strict && attrName in attributes)
throw new MarkupException("Repeated attribute: " ~ attrName);