https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 622b6fd97abd374fdd18a783d12a684f3fa98e23 authored by Emil A Eklund on 18 December 2018, 22:56:53 UTC
Return resolved-value for ComputedStyle line-height
Tip revision: 622b6fd
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