blob: eabaa88293e1eff1e78dd89b348cd18b808eebdb [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<script src="../resources/js-test.js"></script>
<script src="file:///gen/layout_test_data/mojo/public/js/mojo_bindings.js"></script>
<script src="file:///gen/device/geolocation/public/interfaces/geolocation.mojom.js"></script>
<script src="file:///gen/third_party/blink/public/platform/modules/geolocation/geolocation_service.mojom.js"></script>
<script src="file:///gen/third_party/blink/public/platform/modules/permissions/permission.mojom.js"></script>
<script src="resources/geolocation-mock.js"></script>
</head>
<body>
<script>
description("Tests that when a request is made on a Geolocation object and its Frame is disconnected before a callback is made, no callbacks are made.");
var error;
var iframe = document.createElement('iframe');
function onIframeLoaded() {
iframeGeolocation = iframe.contentWindow.navigator.geolocation;
iframe.src = 'data:text/html,This frame should be visible when the test completes';
}
function onIframeUnloaded() {
iframeGeolocation.getCurrentPosition(function () {
testFailed('Success callback invoked unexpectedly');
finishJSTest();
}, function(e) {
testFailed('Error callback invoked unexpectedly');
finishJSTest();
});
setTimeout(function() {
testPassed('No callbacks invoked');
finishJSTest();
}, 100);
}
let mock = geolocationMock;
mock.setGeolocationPermission(true);
mock.setGeolocationPosition(51.478, -0.166, 100);
iframe.src = 'resources/disconnected-frame-inner.html';
document.body.appendChild(iframe);
window.jsTestIsAsync = true;
</script>
</body>
</html>