- From: Ryosuke Niwa <notifications@github.com>
- Date: Mon, 20 May 2019 20:32:59 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 21 May 2019 03:33:22 UTC
rniwa commented on this pull request. > @@ -2203,6 +2203,36 @@ steps: <li><p>If <var>slot</var> is non-null, then run <a>assign slotables</a> for <var>slot</var>. </ol> +<p>To <dfn noexport>update slots</dfn>, given <var>removedNodes</var>, <var>parent</var>, and +<var>addedNodes</var>, run these steps: + +<ol> + <li> + <p>For each <var>removedNode</var> in <var>removedNodes</var>: + + <ol> + <li><p>If <var>removedNode</var> is <a for=slotable>assigned</a>, then run + <a>assign slotables</a> for <var>removedNode</var>'s <a>assigned slot</a>. + + <li><p>If <var>removedNode</var> has an <a>inclusive descendant</a> that is a <a>slot</a>, then + run <a>assign slotables for a tree</a> with <var>removedNode</var>. Hm... looks like Blink & Gecko do: [slot1, slot2, slot3] and WebKit does [slot3, slot2, slot1] -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/pull/695#discussion_r285839283
Received on Tuesday, 21 May 2019 03:33:22 UTC