Source code

Revision control

Copy as Markdown

Other Tools

/**
* Any copyright is dedicated to the Public Domain.
*/
var xhr = new XMLHttpRequest();
xhr.open("GET", "worker_testXHR.txt");
xhr.send(null);
xhr.open("GET", "worker_testXHR.txt");
xhr.send(null);
postMessage("done");