Closed
Description
Description
When parsing in elements like [<div /><div />, <path /><path />, etc] causes the program to nest the elements instead of placing them as siblings.
What should happen
html = "<path /><path />"
parse(html) = <path /><path /> OR <path></path><path></path>
What happens instead
html = "<path /><path />"
parse(html) = <path><path><path /><path />
Steps to Reproduce
Parse in any self closing tags back to back, the error doesn't happen when parsing a single tag only multiple in succession.