blob: c8c86a36d84e628d0f3866a51bddc426232a7402 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<title>Test bug 957893 - Crash in WakeLock</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
function test() {
try {
var wl = navigator.requestWakeLock('');
ok(false, "RequestWakeLock throws an exception!");
} catch(e) {
ok(true, "RequestWakeLock throws an exception!");
}
info("Still alive!");
SimpleTest.finish();
}
SpecialPowers.pushPrefEnv({"set": [["dom.wakelock.enabled", true]]}, test);
</script>
</body>
</html>
|