Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Unified Diff: android_webview/tools/WebViewShell/test/blink-apis/webrtc/mediastream-permission-denied-callbacks.html

Issue 1785283005: [WebView] Reorganize all of the WebView Shell apks into their own dir. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698