blob: 1ccc2fe3bdbe68ad200f7037fd5c68d768931834 [file] [log] [blame]
onconnect = function(e) {
var port = e.ports[0];
var xhr = new XMLHttpRequest();
xhr.onload = function() { port.postMessage(this.responseText); };
xhr.onerror = function(e) { port.postMessage(e); };
xhr.open('GET', 'dummy.txt?simple', true);
xhr.send();
};