8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a852525 commit 9cbfa9dCopy full SHA for 9cbfa9d
src/html5lib/tokenizer.py
@@ -623,7 +623,7 @@ def attributeValueUnQuotedState(self):
623
self.processEntityInAttribute(">")
624
elif data == u">":
625
self.emitCurrentToken()
626
- elif data in (u'"', u"'", u"=", u"<":
+ elif data in (u'"', u"'", u"=", u"<"):
627
self.tokenQueue.append({"type": tokenTypes["ParseError"], "data":
628
"unexpected-character-in-unquoted-attribute-value"})
629
self.currentToken["data"][-1][1] += data
0 commit comments