blob: dce325b6557c57c40cae2cf5f0122d71da28d304 [file] [log] [blame]
function log(message)
{
document.getElementById("result").innerHTML += message + "<br>";
}
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
var worker = createWorker();
worker.postMessage("eval WorkerLocation");
worker.postMessage("eval typeof location");
worker.postMessage("eval location");
worker.postMessage("eval location.href");
worker.postMessage("eval location.origin");
worker.postMessage("eval location.protocol");
worker.postMessage("eval location.host");
worker.postMessage("eval location.hostname");
worker.postMessage("eval location.port");
worker.postMessage("eval location.pathname");
worker.postMessage("eval location.search");
worker.postMessage("eval location.hash");
worker.postMessage("eval foo//bar");
worker.onmessage = function(evt) {
if (!/foo\/\/bar/.test(evt.data))
log(evt.data.replace(new RegExp("/.*(LayoutTests|web_tests)"), "<...>"));
else {
log("DONE");
if (window.testRunner)
testRunner.notifyDone();
}
}