- From: Dominic Farolino <notifications@github.com>
- Date: Mon, 09 Dec 2024 14:42:55 -0800
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 9 December 2024 22:42:58 UTC
@domfarolino commented on this pull request. > @@ -2652,6 +2652,63 @@ of a <var>node</var> into a <var>parent</var> before a <var>child</var>, run the <!-- Technically this is post-insert. --> </ol> +<p>To <dfn export for=Node id=concept-node-ensure-pre-move-validity>ensure pre-move validity</dfn> +of a <var>node</var> into a <var>parent</var> before a <var>child</var>, run these steps: + +<ol> + <li> + <p>If any of the following conditions are true</p> + + <ul> + <li><p><var>parent</var> is <a>connected</a> and <var>node</var> is not <a>connected</a>; or</p></li> + + <li><p><var>parent</var> is not <a>connected</a> and <var>node</var> is <a>connected</a>,</p></li> + </ul> FWIW, that's what the Chromium implementation has been doing (since I believed, slightly incorrectly, that node document comparison was the same as shadow-including root comparison) and what the tests check for. I'll resolve this now since I've updated the spec. -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/pull/1307#discussion_r1876863595 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/dom/pull/1307/review/2490274399@github.com>
Received on Monday, 9 December 2024 22:42:58 UTC