mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
17 lines
543 B
HTML
17 lines
543 B
HTML
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=963366
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test navigator.requestWakeLock is not exposed to non-B2G platform</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">
|
|
ok(navigator.requestWakeLock === undefined,
|
|
"navigator.requestWakeLock is not exposed to non-B2G platform");
|
|
</script>
|
|
</body>
|
|
</html>
|