- From: <bugzilla@jessica.w3.org>
- Date: Wed, 23 Apr 2014 13:54:45 +0000
- To: public-webapps-bugzilla@w3.org
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