summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/beacon/test_beaconPreflightWithCustomContentType.html
blob: d1007b78c5161f5f874658440f46ea3ccd367467 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1210302
-->
<head>
  <title>Test for Bug 1210302</title>
  <script 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=1210302">Mozilla Bug 936340</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

var beaconUrl = "http://example.com/tests/dom/tests/mochitest/beacon/beacon-preflight-handler.sjs?beacon";

var intervalID = null;

function queryIfBeaconSucceeded() {
  clearInterval(intervalID);
  var xhr = new XMLHttpRequest();
  xhr.open("GET", "beacon-preflight-handler.sjs?verify", true);
  xhr.onload = function() {
    is(xhr.responseText, "green", "SendBeacon should have succeeded after preflight!");
    SimpleTest.finish();
  };
  xhr.onerror = function() {
    ok(false, "xhr request returned error");
    SimpleTest.finish();
  };
  xhr.send();
}

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

function beginTest() {
  var abv = new Uint8Array([0,1,2,3]);
  var blob = new Blob(abv, {type: "application/badness, text/plain"});
  var sent = navigator.sendBeacon(beaconUrl, blob);
  ok(sent, "sending the beacon should start successfully");

  // we have to make sure sending the beacon did not fail, so
  // we have to wait for 2 seconds before we can query the result.
  intervalID = setInterval(queryIfBeaconSucceeded, 2000);
}

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