mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
11 lines
271 B
HTML
11 lines
271 B
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>
|
|
var begin = window.performance.now();
|
|
while (window.performance.now() < begin + 51);
|
|
</script>
|