| Index: third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/resources/post-addressspace-from-sharedworker.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/resources/post-addressspace-from-sharedworker.html b/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/resources/post-addressspace-from-sharedworker.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..79fa7169c574be78773387ca2d7ac7f01155dd7a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/security/cors-rfc1918/resources/post-addressspace-from-sharedworker.html
|
| @@ -0,0 +1,8 @@
|
| +<script>
|
| + var w = new SharedWorker("/security/cors-rfc1918/resources/post-addressspace-to-owner.js");
|
| + w.port.onmessage = function (e) {
|
| + window.parent.postMessage(e.data, "*");
|
| + }
|
| + w.port.start();
|
| + w.port.postMessage("go");
|
| +</script>
|
|
|