diff options
Diffstat (limited to 'testing/web-platform/tests/referrer-policy/generic/template/document.html.template')
-rw-r--r-- | testing/web-platform/tests/referrer-policy/generic/template/document.html.template | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/referrer-policy/generic/template/document.html.template b/testing/web-platform/tests/referrer-policy/generic/template/document.html.template new file mode 100644 index 000000000..141711c14 --- /dev/null +++ b/testing/web-platform/tests/referrer-policy/generic/template/document.html.template @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> + <head> + <title>This page reports back it's request details to the parent frame</title> + </head> + <body> + <script> + var result = { + location: document.location.toString(), + referrer: document.referrer.length > 0 ? document.referrer : undefined, + headers: %(headers)s + }; + parent.postMessage(result, "*"); + </script> + </body> +</html> |