summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/beacon/test_beacon.html
blob: 697431bcaf61da6861c91dd9c79aa5f2b80dcfe3 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=936340
-->
<head>
  <title>Test whether sendBeacon fails for non-HTTP URIs and syntactically incorrect calls</title>
  <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=936340">Mozilla Bug 936340</a>
<p id="display"></p>

<div id="content">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({'set': [["beacon.enabled", true]]}, beginTest);

function beginTest() {
  var threw;
  for(let scheme of ["bad", "ftp", "data"]) {
    try {
      is(false, navigator.sendBeacon(`${scheme}://example.com`, "0"));
      threw = false;
    } catch (ex) {
      threw = true;
    }
    ok(threw, `sendBeacon not supported for ${scheme} scheme.`);
  }

  for(let scheme of ["http", "https"]) {
    try {
      is(false, navigator.sendBeacon(`${scheme}://invalid:URL`, "0"));
      threw = false;
    } catch (ex) {
      threw = true;
    }
    ok(threw, `sendBeacon not supported for invalid ${scheme} URLs.`);
  }

  try {
    is(false, navigator.sendBeacon());
    threw = false;
  } catch (e) {
    threw = true;
  }
  ok(threw, "sendBeacon needs more parameters.");

  SimpleTest.finish()
}

</script>
</pre>
</body>
</html>