blob: 1a2096f78ebe0692606c99dc42d6beb5eec5e735 [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<title>test wildcard host name matching (www*.web-platform.test is bad, *www.web-platform.test is bad)</title>
<meta http-equiv="Content-Security-Policy" content="script-src 'self' *w.{{host}}:{{ports[http][0]}} w*.{{host}}:{{ports[http][0]}} 'unsafe-inline';">
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<script src='wildcardHostTestFailure.js'></script>
<script>
var t_spv = async_test("Should fire violation events for every failed violation");
window.addEventListener("securitypolicyviolation", t_spv.step_func_done(function(e) {
assert_equals(e.violatedDirective, "script-src");
}));
var head = document.getElementsByTagName('head')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = "http://www." + location.hostname + ":" + location.port + "/content-security-policy/generic/wildcardHostTestSuceeds.js";
head.appendChild(script);
</script>
</head>
<body>
<h1>test wildcard host name matching (www*.web-platform.test is bad, *www.web-platform.test is bad)</h1>
<div id='log'></div>
</body>
</html>