Trusted by 2 Mn+ QAs & Devs to accelerate their release cycles
Last updated on : 2023-03-20
This API provides a mechanism for executing JavaScript code in a browser context when the browser is idle. The API is designed to reduce the need for polling, allowing developers to queue up work to happen while the browser's resources are otherwise occupied.
Cooperative Scheduling of Background Tasks # the-requestidlecallback-method
window.requestIdleCallback(callback);
window.requestIdleCallback(callback, options);
basic.html
Source:basic.html
1<!DOCTYPE html>2<title>window.requestIdleCallback exists</title>3<link rel="author" title="Ross McIlroy" href="mailto:rmcilroy@chromium.org" />4<script src="/resources/testharness.js"></script>5<script src="/resources/testharnessreport.js"></script>6<script>7test(function() {8 assert_equals(typeof window.requestIdleCallback, "function");9}, "window.requestIdleCallback is defined", {assert: "The window.requestIdleCallback function is used to request callbacks during browser-defined idle time."});10test(function() {11 assert_equals(typeof window.cancelIdleCallback, "function");12}, "window.cancelIdleCallback is defined", {assert: "The window.cancelIdleCallback function is used to cancel callbacks scheduled via requestIdleCallback."});13test(function() {14 assert_equals(typeof window.requestIdleCallback(function() {}), "number");15}, "window.requestIdleCallback() returns a number", {assert: "The requestIdleCallback method MUST return a long"});16test(function() {17 assert_equals(typeof window.cancelIdleCallback(1), "undefined");18}, "window.cancelIdleCallback() returns undefined", {assert: "The cancelIdleCallback method MUST return void"});19async_test(function() {20 // Check whether requestIdleCallback schedules a callback which gets executed21 // and the deadline argument is passed correctly.22 requestIdleCallback(this.step_func_done(function(deadline) {23 assert_equals(arguments.length, 1, "Only one argument should be passed to callback.");24 assert_class_string(deadline, "IdleDeadline");25 assert_equals(typeof deadline.timeRemaining, "function", "IdleDeadline.timeRemaining MUST be a function which returns the time remaining in milliseconds");26 assert_equals(typeof deadline.timeRemaining(), "number", "IdleDeadline.timeRemaining MUST return a double of the time remaining in milliseconds");27 assert_true(deadline.timeRemaining() <= 50, "IdleDeadline.timeRemaining() MUST be less than or equal to 50ms in the future.");28 assert_equals(typeof deadline.didTimeout, "boolean", "IdleDeadline.didTimeout MUST be a boolean");29 assert_false(deadline.didTimeout, "IdleDeadline.didTimeout MUST be false if requestIdleCallback wasn't scheduled due to a timeout");30 }));31}, 'requestIdleCallback schedules callbacks');32async_test(function() {33 // Check whether requestIdleCallback schedules a callback which gets executed34 // and the deadline argument is passed correctly.35 var handle = requestIdleCallback(this.step_func(function(deadline) {36 assert_unreached("callback should not be called if canceled with cancelIdleCallback");37 }));38 cancelIdleCallback(handle);39 setTimeout(this.step_func(function() {40 this.done();41 }), 200);42}, 'cancelIdleCallback cancels callbacks');43</script>44<h1>Basic requestIdleCallback Tests</h1>...
Browser Support For Android Browser Versions
Browser Support For Chrome for Android Versions
Browser Support For Firefox for Android Versions
Browser Support For Samsung Internet Versions
Debug webpages on the go with LT Debug Chrome extension.
Add to ChromeTest your website on 3000+ real browsers and operating systems for mobile and desktop with the LambdaTest cloud. Perform browser compatibility test for requestIdleCallback and many more web technologies that are a part of your website or web-application.
Last Modified date
2023-03-20
Data sourced from
Debug webpages on the go with LT Debug Chrome extension.
Add to ChromeHarness the power of Chromium-based engine to deliver responsive websites and web apps.
Try for freeGet 100 minutes of automation test minutes FREE!!