blob: 2fd16a4c163eb0cc3e5ce2de06fc618bc8c1731b [file] [log] [blame]
<!--
/*
-->
<!doctype html>
<title>location with a worker in separate file that redirects</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function() {
var worker = new Worker('helper-redirect.py?fail');
worker.onmessage = this.step_func_done(function(e) {
assert_equals(e.data[0], location.href.replace(/\/[^\/]+$/, '/post-location-members.js?a'));
assert_equals(e.data[1], location.protocol);
assert_equals(e.data[2], location.host);
assert_equals(e.data[3], location.hostname);
assert_equals(e.data[4], location.port);
assert_equals(e.data[5], location.pathname.replace(/\/[^\/]+$/, '/post-location-members.js'));
assert_equals(e.data[6], '?a');
assert_equals(e.data[7], '');
});
});
</script>
<!--
*/
//-->