| Index: android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html | 
| diff --git a/android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html b/android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html | 
| deleted file mode 100644 | 
| index d947758e4f6a41942dd2873e0f2a9df2db18f526..0000000000000000000000000000000000000000 | 
| --- a/android_webview/tools/WebViewShell/test/blink-apis/geolocation/geolocation-permission-callbacks.html | 
| +++ /dev/null | 
| @@ -1,27 +0,0 @@ | 
| -<!DOCTYPE html> | 
| -<html> | 
| -  <script src="../../resources/js-test.js"></script> | 
| -  <body> | 
| -    <script type="text/javascript"> | 
| -      description("Test Geolocation API permission callbacks in WebView"); | 
| -      window.jsTestIsAsync = true; | 
| - | 
| -      function gotPosition() { | 
| -        testFailed("geolocation should have been denied"); | 
| -        finishJSTest(); | 
| -      } | 
| - | 
| -      function onError(err) { | 
| -        debug("onError: code=" + err.code + ", message=" + err.message); | 
| -        finishJSTest(); | 
| -      } | 
| - | 
| -      if (navigator.geolocation) { | 
| -        navigator.geolocation.getCurrentPosition(gotPosition, onError); | 
| -      } else { | 
| -        debug('geolocation not supported'); | 
| -        finishJSTest(); | 
| -      } | 
| -    </script> | 
| -  </body> | 
| -</html> | 
|  |