mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-06 09:29:35 +00:00
57 lines
1.6 KiB
HTML
57 lines
1.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=1207556
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 1207556</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=1207556">Mozilla Bug 1207556</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?fail";
|
|
|
|
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 failed because of a failed 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 sent = navigator.sendBeacon(beaconUrl, abv);
|
|
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>
|