summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/non-automated/infinite-sibling.html
blob: edcb8d70722770df32f355619ff766a424e5025b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<title>infinite sibling workers</title>
<p>The number below should be increasing (ideally never-ending).</p>
<div>0</div>
<script>
var worker = new Worker('infinite-sibling.js');
var div = document.getElementsByTagName('div')[0];
var i = 0;
worker.onmessage = function(e) {
  div.textContent = i + e.data;
}
</script>