https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a3f92983c1ebd7e625aac08e6b5a78b05f424feb authored by Corentin Wallez on 03 December 2018, 10:18:30 UTC
Revert "Enforce active lifetime of XRFrame objects"
Tip revision: a3f9298
subframe-with-longtask.html
<!DOCTYPE HTML>
<meta charset=utf-8>
<meta name="viewport" content="width=device-width">

<title>Long Task Iframe</title>
<h1>Long Task in Inline Script</h1>

<script>
    const begin = window.performance.now();
    while (window.performance.now() < begin + 60);
</script>
back to top