https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a05b77effddf7fa74c48cc063f1692e3f03fd8fd authored by Marcos Caceres on 01 August 2017, 09:38:06 UTC
refactor: use assert_unreached instead
Tip revision: a05b77e
generic-0_10.html
<!DOCTYPE HTML>
<html>
<head>
    <title>test implicit port number matching (requires port 80)</title>
    <script src='/resources/testharness.js'></script>
    <script src='/resources/testharnessreport.js'></script>
    <script>
      var head = document.getElementsByTagName('head')[0];
      var script = document.createElement('script');
      script.type = 'text/javascript';
      script.src = "http://www." + location.hostname + "/content-security-policy/generic/positiveTest.js";
      head.appendChild(script);
    </script>
</head>
<body>
    <h1>test implicit port number matching (requires port 80)</h1>
    <div id='log'></div>

    <script async defer src='../support/checkReport.sub.js?reportExists=false'></script>
</body>
</html>
back to top