We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f461383 commit febc035Copy full SHA for febc035
src/platforms/web/runtime/modules/events.js
@@ -67,8 +67,10 @@ function add (
67
e.target === e.currentTarget ||
68
// event is fired after handler attachment
69
e.timeStamp >= attachedTimestamp ||
70
- // #9462 bail for iOS 9 bug: event.timeStamp is 0 after history.pushState
71
- e.timeStamp === 0 ||
+ // bail for environments that have buggy event.timeStamp implementations
+ // #9462 iOS 9 bug: event.timeStamp is 0 after history.pushState
72
+ // #9681 QtWebEngine event.timeStamp is negative value
73
+ e.timeStamp <= 0 ||
74
// #9448 bail if event is fired in another document in a multi-page
75
// electron/nw.js app, since event.timeStamp will be using a different
76
// starting reference
0 commit comments