- From: smaug---- <notifications@github.com>
- Date: Wed, 11 Dec 2024 03:27:43 -0800
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 11 December 2024 11:27:47 UTC
@smaug---- 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> Well, I don't want to support move between otherwise unrelated subtrees. This all becomes simpler if we don't have that. No need to check same document or anything like that. -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/pull/1307#discussion_r1879909840 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/dom/pull/1307/review/2495240007@github.com>
Received on Wednesday, 11 December 2024 11:27:47 UTC