This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author karlcow
Recipients Chenyun Yang, ezio.melotti, josh.r, karlcow, martin.panter, r.david.murray, xiang.zhang
Date 2021-01-05.01:29:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609810151.63.0.309866375619.issue25258@roundup.psfhosted.org>
In-reply-to
Content
The parsing rules for tokenization of html are at 
https://html.spec.whatwg.org/multipage/parsing.html#tokenization

In the stack of open elements, there are specific rules for certain elements. 
https://html.spec.whatwg.org/multipage/parsing.html#special

from a DOM point of view, there is indeed no difference in between 
<img src="somewhere"><img src="somewhere"/>

https://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0A%3Cimg%20src%3D%22somewhere%22%3E%3Cimg%20src%3D%22somewhere%22%2F%3E
History
Date User Action Args
2021-01-05 01:29:11karlcowsetrecipients: + karlcow, ezio.melotti, r.david.murray, martin.panter, josh.r, xiang.zhang, Chenyun Yang
2021-01-05 01:29:11karlcowsetmessageid: <1609810151.63.0.309866375619.issue25258@roundup.psfhosted.org>
2021-01-05 01:29:11karlcowlinkissue25258 messages
2021-01-05 01:29:11karlcowcreate