diff options
Diffstat (limited to 'testing/web-platform/tests/navigation-api/navigate-event/resources/opener-postMessage-onload.html')
-rw-r--r-- | testing/web-platform/tests/navigation-api/navigate-event/resources/opener-postMessage-onload.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/navigate-event/resources/opener-postMessage-onload.html b/testing/web-platform/tests/navigation-api/navigate-event/resources/opener-postMessage-onload.html new file mode 100644 index 0000000000..97e1d82058 --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigate-event/resources/opener-postMessage-onload.html @@ -0,0 +1,6 @@ +<!doctype html> +<head> +<script> +window.onload = () => opener.postMessage("onload", "*"); +</script> +</head> |