summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/opaque-response-being-preloaded-xhr.html
blob: 9c6d8bd504a1a3af4840ed36f2397f2d7253eef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<meta charset="utf-8">
<body></body>
<script>
const URL = 'opaque-response?from=opaque-response-being-preloaded-xhr.html';
function runTest() {
  var l = document.createElement('link');
  // Use link rel=preload to try to get the browser to cache the opaque
  // response.
  l.setAttribute('rel', 'preload');
  l.setAttribute('href', URL);
  l.setAttribute('as', 'fetch');
  l.onerror = function() {
    parent.done('FAIL: preload failed unexpectedly');
  };
  document.body.appendChild(l);
  xhr = new XMLHttpRequest;
  xhr.withCredentials = true;
  xhr.open('GET', URL);
  // opaque-response returns an opaque response from serviceworker and thus
  // the XHR must fail because it is not no-cors request.
  // Particularly, the XHR must not reuse the opaque response from the
  // preload request.
  xhr.onerror = function() {
    parent.done('PASS');
  };
  xhr.onload = function() {
    parent.done('FAIL: ' + xhr.responseText);
  };
  xhr.send();
}
</script>
<body onload="setTimeout(runTest, 100)"></body>