OLD | NEW |
---|---|
(Empty) | |
1 <script> | |
2 var count = 0; | |
3 | |
4 function setTitle() { | |
5 // document.title reports the DOM page visibility and RAF count. | |
6 document.title = document.visibilityState + ' ' + count++; | |
7 | |
8 if (window.ready == undefined) | |
9 setTimeout(function() { ready = true }, count > 10 ? 0 : 100); | |
10 } | |
11 | |
12 document.addEventListener('visibilitychange', setTitle); | |
13 | |
14 (function changeTitle() { | |
15 window.requestAnimationFrame(changeTitle); | |
16 setTitle(); | |
17 })(); | |
18 | |
19 </script> | |
OLD | NEW |