| Index: third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerGlobalScope/location/redirect.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerGlobalScope/location/redirect.html b/third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerGlobalScope/location/redirect.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2fd16a4c163eb0cc3e5ce2de06fc618bc8c1731b
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerGlobalScope/location/redirect.html
|
| @@ -0,0 +1,28 @@
|
| +<!--
|
| +/*
|
| +-->
|
| +<!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>
|
| +<!--
|
| +*/
|
| +//-->
|
| +
|
| +
|
|
|