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

Side by Side Diff: content/test/data/media/peerconnection-call.html

Issue 617293002: Speeding up WebRTC content_browsertests by not rendering video. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « content/test/data/media/getusermedia.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="text/javascript" src="webrtc_test_utilities.js"></script> 3 <script type="text/javascript" src="webrtc_test_utilities.js"></script>
4 <script type="text/javascript" src="webrtc_test_audio.js"></script> 4 <script type="text/javascript" src="webrtc_test_audio.js"></script>
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 $ = function(id) { 6 $ = function(id) {
7 return document.getElementById(id); 7 return document.getElementById(id);
8 }; 8 };
9 9
10 var gFirstConnection = null; 10 var gFirstConnection = null;
(...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 var remoteStreamUrl = URL.createObjectURL(e.stream); 905 var remoteStreamUrl = URL.createObjectURL(e.stream);
906 var remoteVideo = $(target); 906 var remoteVideo = $(target);
907 remoteVideo.src = remoteStreamUrl; 907 remoteVideo.src = remoteStreamUrl;
908 } 908 }
909 909
910 </script> 910 </script>
911 </head> 911 </head>
912 <body> 912 <body>
913 <table border="0"> 913 <table border="0">
914 <tr> 914 <tr>
915 <td>Local Preview</td> 915 <td><video width="320" height="240" id="local-view" style="display:none"
916 <td>Remote Stream for Connection 1</td> 916 autoplay muted></video></td>
917 <td>Remote Stream for Connection 2</td> 917 <td><video width="320" height="240" id="remote-view-1"
918 <td>Remote Stream for Connection 3</td> 918 style="display:none" autoplay></video></td>
919 <td>Remote Stream for Connection 4</td> 919 <td><video width="320" height="240" id="remote-view-2"
920 </tr> 920 style="display:none" autoplay></video></td>
921 <tr> 921 <td><video width="320" height="240" id="remote-view-3"
922 <td><video width="320" height="240" id="local-view" autoplay muted> 922 style="display:none" autoplay></video></td>
923 </video></td> 923 <td><video width="320" height="240" id="remote-view-4"
924 <td><video width="320" height="240" id="remote-view-1" autoplay> 924 style="display:none" autoplay></video></td>
925 </video></td>
926 <td><video width="320" height="240" id="remote-view-2" autoplay>
927 </video></td>
928 <td><video width="320" height="240" id="remote-view-3" autoplay>
929 </video></td>
930 <td><video width="320" height="240" id="remote-view-4" autoplay>
931 </video></td>
932 <!-- Canvases are named after their corresponding video elements. --> 925 <!-- Canvases are named after their corresponding video elements. -->
933 <td><canvas width="320" height="240" id="remote-view-1-canvas" 926 <td><canvas width="320" height="240" id="remote-view-1-canvas"
934 style="display:none"></canvas></td> 927 style="display:none"></canvas></td>
935 <td><canvas width="320" height="240" id="remote-view-2-canvas" 928 <td><canvas width="320" height="240" id="remote-view-2-canvas"
936 style="display:none"></canvas></td> 929 style="display:none"></canvas></td>
937 <td><canvas width="320" height="240" id="remote-view-3-canvas" 930 <td><canvas width="320" height="240" id="remote-view-3-canvas"
938 style="display:none"></canvas></td> 931 style="display:none"></canvas></td>
939 <td><canvas width="320" height="240" id="remote-view-4-canvas" 932 <td><canvas width="320" height="240" id="remote-view-4-canvas"
940 style="display:none"></canvas></td> 933 style="display:none"></canvas></td>
941 </tr> 934 </tr>
942 </table> 935 </table>
943 </body> 936 </body>
944 </html> 937 </html>
OLDNEW
« no previous file with comments | « content/test/data/media/getusermedia.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698