| <script src="../../resources/js-test-pre.js"></script> |
| description('Tests that DOM timers on hidden pages that have not reached max nesting level are not throttled.'); |
| let isPageVisible = true; |
| const timeoutInterval = 10; |
| const maxNestingLevel = 5; |
| timerHandle = setTimeout(testTimer, timeoutInterval); |
| shouldBeFalse("internals.isTimerThrottled(timerHandle)"); |
| testRunner.setPageVisibility("hidden"); |
| } else if (timerCount == maxNestingLevel - 1) { |
| testRunner.resetPageVisibility(); |
| clearTimeout(timerHandle); |
| if (!window.testRunner) { |
| debug('This test requires testRunner'); |
| testRunner.overridePreference("WebKitHiddenPageDOMTimerThrottlingEnabled", 1); |
| timerHandle = setTimeout(testTimer, timeoutInterval); |
| shouldBeFalse("internals.isTimerThrottled(timerHandle)"); |
| <body onload="runTest()"> |
| <script src="../../resources/js-test-post.js"></script> |