I discovered this in a custom assert.skip call in test/html/normalize.test.js.
new DOMParser().parseFromString('<r><Label onClick="doClick..>Hello, World</Label></r>','text/html') (missing end quote in onClick attribute) leads to this with <:
<r xmlns="http://www.w3.org/1999/xhtml"><Label onClick="doClick..>Hello, World</r>
while new DOMParser().parseFromString('<Label onClick=doClick..">Hello, World</Label>','text/html') leads to this (looks correct):
<Label onClick="doClick.." xmlns="http://www.w3.org/1999/xhtml">Hello, World</Label>
I discovered this in a custom
assert.skipcall intest/html/normalize.test.js.new DOMParser().parseFromString('<r><Label onClick="doClick..>Hello, World</Label></r>','text/html')(missing end quote inonClickattribute) leads to this with<:while
new DOMParser().parseFromString('<Label onClick=doClick..">Hello, World</Label>','text/html')leads to this (looks correct):