https://github.com/web-platform-tests/wpt
Raw File
Tip revision: ca7722cf58379e8e55257bf4e395b8fba178c106 authored by Robert Ma on 20 March 2018, 18:52:04 UTC
Address comments
Tip revision: ca7722c
infinite-sibling.html
<!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>
back to top