WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 218638
206374
Non-composed CustomEvent's target property is not retargeted to null
https://bugs.webkit.org/show_bug.cgi?id=206374
Summary
Non-composed CustomEvent's target property is not retargeted to null
Ravi Jayaramappa
Reported
2020-01-16 14:20:07 PST
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
Comment 1
2020-01-17 11:14:20 PST
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
Comment 2
2020-01-17 23:28:12 PST
<
rdar://problem/58706920
>
Chris Dumez
Comment 3
2020-11-09 08:48:44 PST
*** This bug has been marked as a duplicate of
bug 218638
***
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug