Update web-platform-tests to revision fec3928f355e049657d19780aa4b412d9d3a714b

This commit is contained in:
WPT Sync Bot 2018-10-02 22:11:10 -04:00
parent 74ba683e27
commit 2a8d9b6983
153 changed files with 3075 additions and 719 deletions

View file

@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>Referrer Policy: multiple Referrer-Policy header and header values are allowed</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/referrer-policy/generic/common.js"></script>
</head>
<body>
<h1>Referrer Policy: multiple Referrer-Policy header and header values are allowed</h1>
<p></p>
<pre id="received_message">Running...</pre>
<script>
var test = async_test("Image uses the last recognized Referrer-Policy header value");
var urlPath = '/referrer-policy/generic/subresource/image.py?cache_destroyer=' + (new Date()).getTime();
var url = location.protocol + "//www1." + location.hostname + ":" + location.port +
urlPath;
queryImage(url, test.step_func(function(message) {
assert_equals(message.referrer, document.location.origin + "/");
test.done();
}), null, 'no-referrer', test);
</script>
<div id="log"></div>
</body>
</html>