00:53
<GPHemsley>
TabAtkins: Assuming yes, https://github.com/tabatkins/bikeshed/issues/2137
00:53
<GPHemsley>
TabAtkins: also filed https://github.com/tabatkins/bikeshed/issues/2136
09:32
<tusf>
I assume this is a good place to ask: I'm implementing a DOM structure for a project, and wanted to be clear of a couple things before diving into the spec (over 100 pages!). First, are elements able to overlap each other? I know that current HTML parsers quietly split up any overlapping inline elements, but is that due to the DOM's representation as a tree? I've seen an older spec that mentioned the DOM doesn't necessarily have to be a tree, and I.E. used to represent it more "flat"... (But that's I.E., so...) Second, related to that tangent, are there any good articles comparing different ways to represent a DOM? Came across linkedom, and has me interested in looking into non-tree implementations, mostly to be contrarian..