[Bug 25423] [Shadow]: event.path should return every nodes in the event path, instead of erasing nodes on descendant trees.

https://www.w3.org/Bugs/Public/show_bug.cgi?id=25423

--- Comment #5 from Erik Arvidsson <arv@google.com> ---
To be clear I thought we also wanted to remove the retargetting that is done on
the event path.

Composed tree

    a
    |
    b
    |
  [SR]
    |
    c
    |      
<content>
    |
    d

var calls = 0;
a.addEventListener('click', (e) => {
  assert.deepEqual([a, b, SR, c, content, d], e.path);
  calls++;
});
d.click();
assert.equal(calls, 1);

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Wednesday, 23 April 2014 13:54:46 UTC