gecko/dom/tests/mochitest/geolocation/test_clearWatch_invalid.html
Doug Turner 3ff622e6d6 Bug 605307 - nsGeolocation::ClearWatch crash. r=jst a=blocking-betaN
--HG--
extra : rebase_source : 57c426d4196d6951a3a59f806f37051b51904789
2010-10-19 12:31:15 -07:00

42 lines
1.1 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=463039
-->
<head>
<title>Test for Bug 463039</title>
<script type="text/javascript" src="/MochiKit/packed.js"></script>
<script type="text/javascript" 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" href="https://bugzilla.mozilla.org/show_bug.cgi?id=463039">Mozilla Bug 463039</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
resume_geolocationProvider();
force_prompt(true);
navigator.geolocation.watchPosition(function(){});
// there are no watches, so this should always throw
for (x=-10; x<10; x++) {
navigator.geolocation.clearWatch(x);
ok(1, "clearWatch should not throw");
}
// lets try something huge
navigator.geolocation.clearWatch(Number.MAX_VALUE);
ok(1, "clearWatch should not throw");
reset_prompt();
</script>
</pre>
</body>
</html>