mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Test Non-Permitted Application for Alarm API</title>
|
||
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p id="display"></p>
|
||
|
<div id="content" style="display: none"></div>
|
||
|
<pre id="test">
|
||
|
<script type="application/javascript">
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
if (SpecialPowers.hasPermission("alarms", document)) {
|
||
|
SpecialPowers.removePermission("alarms", document);
|
||
|
window.location.reload();
|
||
|
} else {
|
||
|
SpecialPowers.pushPrefEnv({"set": [["dom.mozAlarms.enabled", true]]}, function() {
|
||
|
SpecialPowers.removePermission("alarms", document);
|
||
|
|
||
|
// mozAlarms is installed on all platforms except Android for the moment.
|
||
|
if (navigator.appVersion.indexOf("Android") != -1) {
|
||
|
ok(!('mozAlarms' in navigator),
|
||
|
"navigator.mozAlarms should not exist without permission");
|
||
|
ok(!('AlarmsManager' in window),
|
||
|
"Interface AlarmsManager should not exist");
|
||
|
} else {
|
||
|
ok(!('mozAlarms' in navigator),
|
||
|
"navigator.mozAlarms should not exist without permission");
|
||
|
ok(!('AlarmsManager' in window),
|
||
|
"Interface AlarmsManager should not exist without permission");
|
||
|
}
|
||
|
SpecialPowers.addPermission("alarms", true, document);
|
||
|
SimpleTest.finish();
|
||
|
});
|
||
|
}
|
||
|
</script>
|
||
|
</pre>
|
||
|
</body>
|
||
|
</html>
|