summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/hungScript.html
blob: 6b56f4e2e7d1a390e59435afb4163f327af04c07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
  <head>
    <meta charset="utf-8" />
    <title>Hung Script</title>
  </head>
  <body>
    <div id="content"></div>
  </body>
  <script>
    var start = new Date().getTime();
    document.getElementById("content").innerHTML = "Started";
    // eslint-disable-next-line no-empty
    while (new Date().getTime() - start < 5000) {}
    document.getElementById("content").innerHTML = "Finished";
  </script>
</html>