| Index: third_party/WebKit/LayoutTests/fast/dom/Window/resources/file-origin-window-open-frame.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/resources/file-origin-window-open-frame.html b/third_party/WebKit/LayoutTests/fast/dom/Window/resources/file-origin-window-open-frame.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e43614e125ac3bbf7a8dc21f8b6769b9a4e322b2
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/Window/resources/file-origin-window-open-frame.html
|
| @@ -0,0 +1,12 @@
|
| +<script>
|
| +window.addEventListener('message', function () {
|
| + var exc = null;
|
| + try {
|
| + newWindow.document;
|
| + } catch (e) {
|
| + exc = e;
|
| + }
|
| + top.postMessage(exc ? '' + exc : null, '*');
|
| +});
|
| +newWindow = window.open('data:text/html,<script>opener.postMessage("runTest","*");</scr' + 'ipt>');
|
| +</script>
|
|
|