1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:37:34 +00:00

Base: Replace setInterval test page with a more thorough timer test page

Ensure we test both setTimeout and setInterval (and their cancellation
methods), and test scenarios such as raising exceptions in the callback,
passing extra arguments, etc.
This commit is contained in:
Timothy Flynn 2022-03-04 10:36:21 -05:00 committed by Andreas Kling
parent 7b54845c8e
commit 8156ec5da8
3 changed files with 195 additions and 24 deletions

View file

@ -152,7 +152,7 @@
<li><a href="qsa.html">querySelectorAll()</a></li>
<li><a href="innerHTML.html">innerHTML()</a></li>
<li><a href="demo.html">fun demo</a></li>
<li><a href="set-interval.html">setInterval()</a></li>
<li><a href="set-timeout-and-interval.html">setTimeout() and setInterval()</a></li>
<li><a href="location.html">window.location property</a></li>
<li><a href="script-preparation-test.html">Test for the early return steps 6-8 of the "prepare a script" algorithm</a></li>
<li><a href="async-js.html">Basic test for async functions and their integration with the LibWeb event loop</a></li>