Skip to content

Commit dae7e41

Browse files
committed
fix: skip microtask fix if event is fired from different document
fix #9448
1 parent d5ade28 commit dae7e41

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/platforms/web/runtime/modules/events.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ function add (
6060
const attachedTimestamp = currentFlushTimestamp
6161
const original = handler
6262
handler = original._wrapper = function (e) {
63-
if (e.timeStamp >= attachedTimestamp) {
63+
if (
64+
e.timeStamp >= attachedTimestamp ||
65+
// #9448 bail if event is fired in another document in a multi-page
66+
// electron/nw.js app
67+
e.target.ownerDocument !== document
68+
) {
6469
return original.apply(this, arguments)
6570
}
6671
}

0 commit comments

Comments
 (0)