diff options
Diffstat (limited to 'testing/web-platform/tests/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html')
-rw-r--r-- | testing/web-platform/tests/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/web-platform/tests/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html b/testing/web-platform/tests/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html new file mode 100644 index 0000000000..cd4b4ae724 --- /dev/null +++ b/testing/web-platform/tests/referrer-policy/generic/inheritance/iframe-inheritance-srcdoc-child.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> + <head> + <title>Referrer Policy: iframes srdoc child correctly inherit the ancestor's referrer policy</title> + <link rel="help" href="https://www.w3.org/TR/referrer-policy/#referrer-policy-delivery-nested"> + <script src="/resources/testharness.js"></script> + <script src="/resources/testharnessreport.js"></script> + <script src="/common/get-host-info.sub.js"></script> + <script src="resources/make-html-script.js"></script> + <meta name="referrer" content="origin"> + </head> + <body onload="runTest()"> + <h1>Referrer Policy: iframes srcdoc child correctly inherit the ancestor's referrer policy</h1> + <script> + var test = async_test("iframes srcdoc child correctly inherit the ancestor's referrer policy"); + window.addEventListener("message", test.step_func_done(msg => { + assert_equals(msg.data.referrer, self.origin + "/"); + })); + + function runTest() { + var iframe = document.createElement("iframe"); + iframe.srcdoc = `<body><h1>Outer iframe</h1></body>`; + iframe.onload = test.step_func(() => { + iframe.onload = null; + var iframeChild = iframe.contentDocument.createElement("iframe"); + iframeChild.srcdoc = createScriptString(get_host_info().REMOTE_ORIGIN); + iframe.contentDocument.body.appendChild(iframeChild); + }); + document.body.appendChild(iframe); + } + </script> + <div id="log"></div> + </body> +</html> |