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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/webrtc/simplecall.html

Issue 1989043002: Move the webrtc directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 To quickly iterate when developing this test, use --use-fake-ui-for-media-stream 3 To quickly iterate when developing this test, use --use-fake-ui-for-media-stream
4 for Chrome and set the media.navigator.permission.disabled property to true in 4 for Chrome and set the media.navigator.permission.disabled property to true in
5 Firefox. You must either have a webcam/mic available on the system or use for 5 Firefox. You must either have a webcam/mic available on the system or use for
6 instance --use-fake-device-for-media-stream for Chrome. 6 instance --use-fake-device-for-media-stream for Chrome.
7 --> 7 -->
8 8
9 <html> 9 <html>
10 <head> 10 <head>
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 // This function starts the test. 109 // This function starts the test.
110 test.step(function() { 110 test.step(function() {
111 navigator.getUserMedia({ video: true, audio: true }, 111 navigator.getUserMedia({ video: true, audio: true },
112 getUserMediaOkCallback, 112 getUserMediaOkCallback,
113 failed('getUserMedia')); 113 failed('getUserMedia'));
114 }); 114 });
115 </script> 115 </script>
116 116
117 </body> 117 </body>
118 </html> 118 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698