summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/referrer-policy/generic/template/document.html.template
blob: 141711c1483fd13e87e95f151fe6f3191704d7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>