Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<title>Test for getCurrentPosition </title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="geolocation_common.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<a target="_blank"
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
// This test loads in an iframe, to ensure that the navigator instance is
// loaded with the correct value of the preference.
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({set: [["geo.enabled", false]]}, function() {
let iframe = document.createElement("iframe");
iframe.id = "f1";
iframe.src = "test_geolocation_is_undefined_when_pref_is_off_iframe.html";
document.body.appendChild(iframe);
});
</script>
</pre>
</body>
</html>