1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
5 function makeGeolocationRequest() {
6 if (!window
.testRunner
|| !window
.internals
)
7 debug('This test can not run without testRunner or internals');
9 internals
.setGeolocationClientMock(document
);
10 internals
.setGeolocationPermission(document
, true);
11 internals
.setGeolocationPosition(document
, 51.478, -0.166, 100);
13 var parent
= window
.parent
;
15 // Make request from remote frame, this frame will be gone by the time the Geolocation
16 // object attempts to invoke the callback.
17 window
.parent
.navigator
.geolocation
.getCurrentPosition(function() {
18 parent
.testPassed('Success callback invoked');
19 parent
.finishJSTest();
21 parent
.testFailed('Error callback invoked unexpectedly');
22 parent
.finishJSTest();
27 <body onload=
"window.parent.onFirstIframeLoaded()",
onunload=
"makeGeolocationRequest()">
28 <p>This frame should be replaced before the test ends
</p>