2 mw.requestIdleCallbackInternal = function ( callback ) {
3 setTimeout( function () {
7 timeRemaining: function () {
8 // Hard code a target maximum busy time of 50 milliseconds
9 return Math.max( 0, 50 - ( mw.now() - start ) );
16 * Schedule a deferred task to run in the background.
18 * This allows code to perform tasks in the main thread without impacting
19 * time-critical operations such as animations and response to input events.
21 * Basic logic is as follows:
23 * - User input event should be acknowledged within 100ms per [RAIL][].
24 * - Idle work should be grouped in blocks of upto 50ms so that enough time
25 * remains for the event handler to execute and any rendering to take place.
26 * - Whenever a native event happens (e.g. user input), the deadline for any
27 * running idle callback drops to 0.
28 * - As long as the deadline is non-zero, other callbacks pending may be
29 * executed in the same idle period.
33 * - <https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback>
34 * - <https://w3c.github.io/requestidlecallback/>
35 * - <https://developers.google.com/web/updates/2015/08/using-requestidlecallback>
37 * [RAIL]: https://developers.google.com/web/fundamentals/performance/rail
41 * @param {Function} callback
42 * @param {Object} [options]
43 * @param {number} [options.timeout] If set, the callback will be scheduled for
44 * immediate execution after this amount of time (in milliseconds) if it didn't run
47 mw.requestIdleCallback = window.requestIdleCallback ?
48 // Bind because it throws TypeError if context is not window
49 window.requestIdleCallback.bind( window ) :
50 mw.requestIdleCallbackInternal;
51 // Note: Polyfill was previously disabled due to
52 // https://bugs.chromium.org/p/chromium/issues/detail?id=647870
53 // See also <http://codepen.io/Krinkle/full/XNGEvv>