| Index: third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/callback-to-remote-context.js
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/callback-to-remote-context.js b/third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/callback-to-remote-context.js
|
| deleted file mode 100644
|
| index 9ac34c3ad3a6ad94c6c053857dfa22101328c586..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/Geolocation/script-tests/callback-to-remote-context.js
|
| +++ /dev/null
|
| @@ -1,18 +0,0 @@
|
| -description("Tests that when a Geolocation request is made from a remote frame, callbacks are made as usual.");
|
| -
|
| -function onIframeReady() {
|
| - // Make request from remote frame
|
| - iframe.contentWindow.navigator.geolocation.getCurrentPosition(function() {
|
| - testPassed('Success callback invoked');
|
| - finishJSTest();
|
| - }, function() {
|
| - testFailed('Error callback invoked unexpectedly');
|
| - finishJSTest();
|
| - });
|
| -}
|
| -
|
| -var iframe = document.createElement('iframe');
|
| -iframe.src = 'resources/callback-to-remote-context-inner.html';
|
| -document.body.appendChild(iframe);
|
| -
|
| -window.jsTestIsAsync = true;
|
|
|