OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>WebRTC PeerConnection Manual Test</title> | 4 <title>WebRTC PeerConnection Manual Test</title> |
5 <!-- Load the polyfill to switch-hit between Chrome and Firefox --> | 5 <!-- Load the polyfill to switch-hit between Chrome and Firefox --> |
6 <script src="../adapter.js"></script> | 6 <script src="../adapter.js"></script> |
7 <script src="peerconnection_manual.js"></script> | 7 <script src="peerconnection_manual.js"></script> |
8 <link rel="StyleSheet" href="stylesheet.css"> | 8 <link rel="StyleSheet" href="stylesheet.css"> |
9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
10 </head> | 10 </head> |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 Connect</button><br/> | 74 Connect</button><br/> |
75 | 75 |
76 PeerConnection Constraints: | 76 PeerConnection Constraints: |
77 CPU overuse <input type="checkbox" id="cpuoveruse-detection" | 77 CPU overuse <input type="checkbox" id="cpuoveruse-detection" |
78 onclick="setPeerConnectionConstraints();" checked="true"/> | 78 onclick="setPeerConnectionConstraints();" checked="true"/> |
79 RTP <input type="checkbox" id="data-channel-type-rtp" | 79 RTP <input type="checkbox" id="data-channel-type-rtp" |
80 onclick="setPeerConnectionConstraints();"><br/> | 80 onclick="setPeerConnectionConstraints();"><br/> |
81 <input class="width-100" type="text" id="pc-constraints" value="{}" ><br/> | 81 <input class="width-100" type="text" id="pc-constraints" value="{}" ><br/> |
82 PeerConnection <a href="http://goo.gl/xVi12"> | 82 PeerConnection <a href="http://goo.gl/xVi12"> |
83 createOffer MediaConstraints:</a><br/> | 83 createOffer MediaConstraints:</a><br/> |
84 <input type="text" class="width-100" id="pc-createoffer-constraints" | 84 <input type="text" class="width-100" id="pc-createoffer-constraints" |
85 value="{}"/><br/> | 85 value="{}"/><br/> |
86 PeerConnection <a href="http://goo.gl/0TjfX"> | 86 PeerConnection <a href="http://goo.gl/0TjfX"> |
87 createAnswer MediaConstraints:</a><br/> | 87 createAnswer MediaConstraints:</a><br/> |
88 <input type="text" class="width-100" id="pc-createanswer-constraints" | 88 <input type="text" class="width-100" id="pc-createanswer-constraints" |
89 value="{}"/><br/> | 89 value="{}"/><br/> |
90 | 90 |
91 Call: | 91 Call: |
92 <button class="button-green" onclick="negotiateCallFromHere();">Negotiate | 92 <button class="button-green" onclick="negotiateCallFromHere();">Negotiate |
93 </button> | 93 </button> |
94 <button class="button-red" onclick="hangUpFromHere();">Hang up</button> | 94 <button class="button-red" onclick="hangUpFromHere();">Hang up</button> |
95 <br/> | 95 <br/> |
96 | 96 |
97 Local Stream: | 97 Local Stream: |
98 <button class="button-green" onclick="addLocalStreamFromHere();">Add | 98 <button class="button-green" onclick="addLocalStreamFromHere();">Add |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 | 169 |
170 <div class="right"> | 170 <div class="right"> |
171 <h2>Debug</h2> | 171 <h2>Debug</h2> |
172 <pre id="debug"></pre> | 172 <pre id="debug"></pre> |
173 </div> | 173 </div> |
174 </div> | 174 </div> |
175 </div> | 175 </div> |
176 </div> | 176 </div> |
177 </body> | 177 </body> |
178 </html> | 178 </html> |
OLD | NEW |