Skip to content

Commit

Permalink
Remove suppress observers flag
Browse files Browse the repository at this point in the history
  • Loading branch information
domfarolino committed Oct 10, 2024
1 parent f254047 commit fe139ab
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2869,7 +2869,7 @@ passed a <a for=/>node</a> <var ignore>movedNode</var>, and a <a for=/>node</a>-
ignore>oldParent</var> as indicated in the <a for=/>move</a> algorithm below.

<p>To <dfn export id=concept-node-move>move</dfn> a <var>node</var> into a <var>parent</var> before
a <var>child</var>, with an optional <i>suppress observers flag</i>, run these steps:
a <var>child</var>, run these steps:

<ol>
<li><p>Let <var>oldParent</var> be <var>node</var>'s <a for=tree>parent</a>.
Expand Down Expand Up @@ -2944,17 +2944,11 @@ a <var>child</var>, with an optional <i>suppress observers flag</i>, run these s
</ol>
</li>

<li>
<p>If <i>suppress observers flag</i> is unset, then:

<ol>
<li><p><a>Queue a tree mutation record</a> for <var>parent</var> with « », <var>nodes</var>,
<var>previousSibling</var>, and <var>child</var>.</p></li>
<li><p><a>Queue a tree mutation record</a> for <var>parent</var> with « », <var>nodes</var>,
<var>previousSibling</var>, and <var>child</var>.</p></li>

<li><a>Queue a tree mutation record</a> for <var>parent</var> with <var>nodes</var>, « »,
<var>previousSibling</var>, and <var>child</var>.</p></li>
</ol>
</li>
<li><a>Queue a tree mutation record</a> for <var>parent</var> with <var>nodes</var>, « »,
<var>previousSibling</var>, and <var>child</var>.</p></li>

<li><p>Run the <a>children changed steps</a> for <var>parent</var>.
</ol>
Expand Down

0 comments on commit fe139ab

Please sign in to comment.