summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/www/hungScript.html
blob: 5b3faee9ec8e6f67a85a2ce672859ea1aa683e1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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>