- From: L. David Baron <notifications@github.com>
- Date: Wed, 02 Aug 2023 12:31:19 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
- Message-ID: <whatwg/dom/issues/1219@github.com>
The [clone](https://dom.spec.whatwg.org/#concept-node-clone) algorithm in the DOM spec currently describes the cloning algorithm when the "clone children" flag is set as recursively cloning the children and then appending them to the cloned parent. While, strictly, it doesn't link to [append](https://dom.spec.whatwg.org/#concept-node-append), it probably meant to, and the definition of append involves running the insertion steps on all shadow-including descendants. This means that the algorithm described in the specification is quadratic in the tree depth, since the insertion steps are run depth times for each node. This quadratic behavior is in fact present in current Chromium. @mfreed7 just landed [a CL to to fix that](https://chromium-review.googlesource.com/c/4728983); it seemed like given the way insertion steps usually (although not quite always) care about whether the element is [connected](https://dom.spec.whatwg.org/#connected), the difference in ordering probably wouldn't be observable, since most of the insertion steps would only matter when the resulting tree gets appended to something that is connected. (There are some insertion steps where this isn't true, though, but they also generally seem to care about being connected to some ancestor in particular, for example for `picture` element media selection. I think for `picture` element selection there's a decent chance that this change is an observable behavior change in Chromium... though not observably spec-violating since the spec for `picture` stuff is quite vague about timing (through use of [in parallel](https://html.spec.whatwg.org/multipage/infrastructure.html#in-parallel).) I decided to just now to look at the relevant Gecko code; `nsINode::CloneNode` calls `nsINode::Clone` which calls `nsINode::CloneAndAdopt` which appears to have the same behavior as the *new* Chromium behavior. Given that: * this alternative behavior is faster * one engine has already adopted it, and another is trying to * it seems likely that the difference is Web-observable, and that chance will increase over time I think it seems likely to be worthwhile to change the DOM spec to describe element cloning in this new way. The disadvantage is that I think it will make the spec a bit more complicated. (Thus, I'm filing an issue rather than immediately writing a PR, since the PR would take a good bit more time to write!) -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/issues/1219 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/dom/issues/1219@github.com>
Received on Wednesday, 2 August 2023 19:31:25 UTC