summaryrefslogtreecommitdiffstats
path: root/netwerk/test/mochitests/test_rel_preconnect.html
blob: c7e0bada07c487496c0fc710f47406707a3e48f4 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
  <title>Test for link rel=preconnect</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css"  href="/tests/SimpleTest/test.css" />

<script type="text/javascript">
SimpleTest.waitForExplicitFinish();

const Cc = SpecialPowers.Cc, Ci = SpecialPowers.Ci, Cr = SpecialPowers.Cr;

var remainder = 4;
var observer;

async function doTest()
{
  await SpecialPowers.setBoolPref("network.http.debug-observations", true);

  observer = SpecialPowers.wrapCallback(function(subject, topic, data) {
    remainder--;
    ok(true, "observed remainder = " + remainder);
    if (!remainder) {
      SpecialPowers.removeObserver(observer, "speculative-connect-request");
      SpecialPowers.setBoolPref("network.http.debug-observations", false);
      SimpleTest.finish();
    }
  });
  SpecialPowers.addObserver(observer, "speculative-connect-request");

  // test the link rel=preconnect element in the head for both normal
  // and crossOrigin=anonymous
  var link = document.createElement("link");
  link.rel = "preconnect";
  link.href = "//localhost:8888";
  document.head.appendChild(link);
  link = document.createElement("link");
  link.rel = "preconnect";
  link.href = "//localhost:8888";
  link.crossOrigin = "anonymous";
  document.head.appendChild(link);

  // test the http link response header - the test contains both a
  // normal and anonymous preconnect link header
  var iframe = document.createElement('iframe');
  iframe.src = 'rel_preconnect.sjs?//localhost:8888';

  document.body.appendChild(iframe);
}

</script>
</head>
<body onload="doTest();">
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
</pre>
</body>
</html>