| Index: LayoutTests/http/tests/workers/resources/worker-importscripts-onerror-redirect-to-crossorigin.js
|
| diff --git a/LayoutTests/http/tests/workers/resources/worker-importscripts-onerror-redirect-to-crossorigin.js b/LayoutTests/http/tests/workers/resources/worker-importscripts-onerror-redirect-to-crossorigin.js
|
| index 816352e7520f4e581a4a74f19f76e666d35333dd..ffd337f5dbf64f780639fb04e3be66493ab15cdf 100644
|
| --- a/LayoutTests/http/tests/workers/resources/worker-importscripts-onerror-redirect-to-crossorigin.js
|
| +++ b/LayoutTests/http/tests/workers/resources/worker-importscripts-onerror-redirect-to-crossorigin.js
|
| @@ -1,2 +1,6 @@
|
| +self.onerror = function (message, filename, lineno, column) {
|
| + postMessage({ 'message': message, 'filename': filename, 'lineno': lineno, 'column': column });
|
| +};
|
| +
|
| var differentRedirectOrigin = "/resources/redirect.php?url=http://localhost:8000/workers/resources/worker-importScripts-throw.js";
|
| importScripts(differentRedirectOrigin)
|
|
|