- From: smaug---- <notifications@github.com>
- Date: Mon, 12 Mar 2018 06:39:13 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
- Message-ID: <whatwg/dom/pull/585/review/103041876@github.com>
smaug---- requested changes on this pull request. > - <li><p>If <var>target</var> is <var>relatedTarget</var> and <var>target</var> is not - <var>event</var>'s <a for=Event>relatedTarget</a>, then return true. + <li><p>If <var>relatedTargets</var> <a for=list>contains</a> <var>target</var> and I doubt this is quite right in Touch case. Need to think this case some more. I have some such case in mind where one of the relatedTargets does contain target before retargeting and then retargeting makes also some other relatedTarget to be target. > </ol> - <li><p>Otherwise, if <var>parent</var> and <var>relatedTarget</var> are identical, then set - <var>parent</var> to null. + <li><p>Otherwise, if <var>relatedTargets</var> <a for=list>contains</a> <var>parent</var>, then + set <var>parent</var> to null. Gut feeling is that also this has similar problem. > @@ -5751,9 +5757,21 @@ is an object or one of its <a>shadow-including ancestors</a>. <var>B</var>, repeat these steps until they return an object:</p> <ol> - <li><p>If <var>A</var>'s <a for=tree>root</a> is not a <a for=/>shadow root</a>, or <var>A</var>'s - <a for=tree>root</a> is a <a>shadow-including inclusive ancestor</a> of <var>B</var>, then return - <var>A</var>. + <li><p>If <var>A</var> is a {{Window}} object, then set <var>A</var> to <var>A</var>'s + <a>associated <code>Document</code></a>. Hmm, retargeting Window gives Document? Shouldn't this just return Window -- 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/585#pullrequestreview-103041876
Received on Monday, 12 March 2018 13:39:35 UTC