https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c366d0e0c10ab968e6fb97fbd98b1c9abb00a93c authored by Alex Moshchuk on 19 April 2018, 17:55:30 UTC
Fix incorrect unreachable_func in CSP layout tests.
Tip revision: c366d0e
header-referrer-origin-when-cross-origin.html
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>SendBeacon Referrer Header Origin When Cross Origin Policy</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <meta name='referrer' content='origin-when-cross-origin'>
  </head>
  <body>
    <script src="/common/utils.js"></script>
    <script src="/common/get-host-info.sub.js"></script>
    <script src="header-referrer.js"></script>
    <script>
      var testBase = get_host_info().HTTP_ORIGIN + RESOURCES_DIR;
      testReferrerHeader(testBase, referrerUrl);
      testBase = get_host_info().HTTP_REMOTE_ORIGIN + RESOURCES_DIR;
      testReferrerHeader(testBase, referrerOrigin);
    </script>
  </body>
</html>
back to top