Skip to content

Commit 22790b2

Browse files
committed
fix(scheduler): revert timeStamp check
fix #9729 This reverts #9667, but also fixes the original issue #9632 by skipping the check in IE altogether (since all IE use low-res event timestamps).
1 parent ebc1893 commit 22790b2

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/core/observer/scheduler.js

+10-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import {
88
warn,
99
nextTick,
1010
devtools,
11-
inBrowser
11+
inBrowser,
12+
isIE
1213
} from '../util/index'
1314

1415
export const MAX_UPDATE_COUNT = 100
@@ -47,16 +48,19 @@ let getNow: () => number = Date.now
4748
// timestamp can either be hi-res (relative to page load) or low-res
4849
// (relative to UNIX epoch), so in order to compare time we have to use the
4950
// same timestamp type when saving the flush timestamp.
50-
if (inBrowser) {
51+
// All IE versions use low-res event timestamps, and have problematic clock
52+
// implementations (#9632)
53+
if (inBrowser && !isIE) {
5154
const performance = window.performance
5255
if (
5356
performance &&
5457
typeof performance.now === 'function' &&
55-
document.createEvent('Event').timeStamp <= performance.now()
58+
getNow() > document.createEvent('Event').timeStamp
5659
) {
57-
// if the event timestamp is bigger than the hi-res timestamp
58-
// (which is evaluated AFTER) it means the event is using a lo-res timestamp,
59-
// and we need to use the lo-res version for event listeners as well.
60+
// if the event timestamp, although evaluated AFTER the Date.now(), is
61+
// smaller than it, it means the event is using a hi-res timestamp,
62+
// and we need to use the hi-res version for event listener timestamps as
63+
// well.
6064
getNow = () => performance.now()
6165
}
6266
}

0 commit comments

Comments
 (0)