https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 12ff58441c7624b898d1f5b509264907f7fd0e07 authored by Luke Bjerring on 23 March 2018, 17:36:39 UTC
Support partial dictionaries
Tip revision: 12ff584
infinite-sibling-and-nested.html
<!doctype html>
<title>infinite sibling and nested workers</title>
<p>The number below should be increasing (ideally never-ending).</p>
<div>0</div>
<script>
var worker = new Worker('infinite-sibling-and-nested.js');
var div = document.getElementsByTagName('div')[0];
var i = 0;
worker.onmessage = function(e) {
  div.textContent = i + e.data;
}
</script>
back to top