https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c5e2e61d4173a01e1b56881c5e18edb7730e1ac5 authored by Rouslan Solomakhin on 26 March 2018, 16:27:36 UTC
Replace 'enabledMethods' array into 'method' string.
Tip revision: c5e2e61
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 + 51);
</script>
back to top