Index: android_webview/tools/WebViewShell/test/blink-apis/webrtc/mediastream-permission-denied-callbacks.html |
diff --git a/android_webview/tools/WebViewShell/test/blink-apis/webrtc/mediastream-permission-denied-callbacks.html b/android_webview/tools/WebViewShell/test/blink-apis/webrtc/mediastream-permission-denied-callbacks.html |
deleted file mode 100644 |
index 3eef13b547729fc3712186eee43ab649a322c6cb..0000000000000000000000000000000000000000 |
--- a/android_webview/tools/WebViewShell/test/blink-apis/webrtc/mediastream-permission-denied-callbacks.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
- <script src="../../resources/js-test.js"></script> |
- <body> |
- <script type="text/javascript"> |
- description("Test MediaStream API permission denied callbacks in WebView"); |
- window.jsTestIsAsync = true; |
- |
- function error(e) { |
- testPassed('getUserMedia error callback, reason: ' + e.name); |
- finishJSTest(); |
- } |
- |
- function gotStream(stream) { |
- testFailed('getUserMedia should not have succeeded.'); |
- finishJSTest(); |
- } |
- |
- function getUserMedia(constraints, callback) { |
- try { |
- navigator.webkitGetUserMedia(constraints, callback, error); |
- } catch (e) { |
- testFailed('webkitGetUserMedia threw exception :' + e); |
- finishJSTest(); |
- } |
- } |
- |
- getUserMedia({audio:true, video:true}, gotStream); |
- </script> |
- </body> |
-</html> |