blob: e01ffa8bf6bbdeda6f682dfd315e8bb785bf5011 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../../../resources/js-test-pre.js"></script>
</head>
<body>
<script>
description("Tests for a crash when clearWatch() is called with a zero ID.<br><br>We call clearWatch() with a request in progress then navigate the page. This accesses the watchers map during cleanup and triggers the crash. This page should not be visible when the test completes.");
if (window.testRunner) {
testRunner.setGeolocationPermission(true);
testRunner.setMockGeolocationPosition(51.478, -0.166, 100);
} else
debug('This test can not be run without the testRunner');
document.body.onload = function() {
navigator.geolocation.watchPosition(function() {});
navigator.geolocation.clearWatch(0);
location = "data:text/html,TEST COMPLETE<script>if(window.testRunner) testRunner.notifyDone();</scr" + "ipt>";
}
window.jsTestIsAsync = true;
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>