https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 8dd5a4f5f97831059b77c76bb87e906f9eb26d5a authored by Jinho Bang on 05 April 2018, 17:36:25 UTC
WebBluetooth: Use [SecureContext] instead of manual check
Tip revision: 8dd5a4f
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