Bug 206374
Summary: | Non-composed CustomEvent's target property is not retargeted to null | ||
---|---|---|---|
Product: | WebKit | Reporter: | Ravi Jayaramappa <ravi.jayaramappa> |
Component: | DOM | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | cdumez, rniwa, webkit-bug-importer |
Priority: | P2 | Keywords: | InRadar |
Version: | Safari 13 | ||
Hardware: | Mac | ||
OS: | macOS 10.14 | ||
Bug Depends on: | |||
Bug Blocks: | 148695 |
Ravi Jayaramappa
When a non-composed CustomEvent is dispatched inside a shadow tree and the event finishes processing, the event's target is expected to be null. Instead, the event's target is pointing to the element on which it was dispatched. This behavior differs from the other browsers, where the event target is null.
Repro steps:
1. Construct a DOM tree of this form
<div>
#shadow-root (open)
<span></span>
</div>
2. Dispatch an event on span element and access the event's target property
const event = new CustomEvent('test', { bubbles: true });
span.dispatchEvent(event);
console.log(event.eventPhase); // 0
console.log(event.target); // <span> in Safari; null in Chrome, Firefox, Edge;
jsbin repro
https://jsbin.com/likekis/edit?html,js,console
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Ravi Jayaramappa
Found the relevant web platform tests to be failing. https://wpt.fyi/results/shadow-dom/event-post-dispatch.html?label=experimental&label=master&aligned
Radar WebKit Bug Importer
<rdar://problem/58706920>
Chris Dumez
*** This bug has been marked as a duplicate of bug 218638 ***