-
-
Notifications
You must be signed in to change notification settings - Fork 35.7k
/
Copy pathdeterministic-injection.js
87 lines (50 loc) · 1.31 KB
/
deterministic-injection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
( function () {
/* Deterministic random */
window.Math._random = window.Math.random;
let seed = Math.PI / 4;
window.Math.random = function () {
const x = Math.sin( seed ++ ) * 10000;
return x - Math.floor( x );
};
/* Deterministic timer */
window.performance._now = performance.now;
let frameId = 0;
const now = () => frameId * 16;
window.Date.now = now;
window.Date.prototype.getTime = now;
window.performance.now = now;
/* Deterministic RAF */
const RAF = window.requestAnimationFrame;
window._renderStarted = false;
window._renderFinished = false;
const maxFrameId = 2;
window.requestAnimationFrame = function ( cb ) {
if ( ! window._renderStarted ) {
setTimeout( function () {
requestAnimationFrame( cb );
}, 50 );
} else {
RAF( function () {
if ( frameId ++ < maxFrameId ) {
cb( now() );
} else {
window._renderFinished = true;
}
} );
}
};
/* Semi-deterministic video */
const play = HTMLVideoElement.prototype.play;
HTMLVideoElement.prototype.play = async function () {
play.call( this );
this.addEventListener( 'timeupdate', () => this.pause() );
function renew() {
this.load();
play.call( this );
RAF( renew );
}
RAF( renew );
};
/* Additional variable for ~5 examples */
window.TESTING = true;
}() );