blob: b0c102fd41aeb6fa6378f1674b45ec10d4435fc9 [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 the assertion that the GeolocationClient should not be updating<br>" +
"when the GeolocationController is destroyed.<br>" +
"See https://bugs.webkit.org/show_bug.cgi?id=52216");
var otherWindow;
if (window.testRunner)
testRunner.waitUntilDone();
else
testFailed('This test can not be run without the testRunner');
function gotPosition(p)
{
testPassed("Received Geoposition.");
otherWindow.close();
window.setTimeout(waitForWindowToClose, 0);
}
function waitForWindowToClose()
{
if (!otherWindow.closed) {
window.setTimeout(waitForWindowToClose, 0);
return;
}
testPassed("Success - no crash!");
finishJSTest();
}
debug("Main page opening resources/window-close-popup.html");
otherWindow = window.open("resources/window-close-popup.html");
window.jsTestIsAsync = true;
</script>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>