| 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="../test_functions.js"></script> | |
| 8 <script src="../message_handling.js"></script> | |
| 9 <script src="../getusermedia.js"></script> | |
| 10 <script src="../jsep01_call.js"></script> | |
| 11 <script src="peerconnection.js"></script> | 7 <script src="peerconnection.js"></script> |
| 12 <link rel="StyleSheet" href="stylesheet.css"> | 8 <link rel="StyleSheet" href="stylesheet.css"> |
| 13 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 14 </head> | 10 </head> |
| 15 <body> | 11 <body> |
| 16 | 12 |
| 17 <div id="wrapper"> | 13 <div id="wrapper"> |
| 18 <div id="getusermedia-input"> | 14 <div id="getusermedia-input"> |
| 19 GetUserMedia <a href="http://goo.gl/V7cZg">MediaStreamConstraints</a>: | 15 GetUserMedia <a href="http://goo.gl/V7cZg">MediaStreamConstraints</a>: |
| 20 <input type="text" id="getusermedia-constraints"> | 16 <input type="text" id="getusermedia-constraints"> |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 </textarea> | 155 </textarea> |
| 160 | 156 |
| 161 <h2>Debug</h2> | 157 <h2>Debug</h2> |
| 162 <pre id="debug"></pre> | 158 <pre id="debug"></pre> |
| 163 </div> | 159 </div> |
| 164 </div> | 160 </div> |
| 165 </div> | 161 </div> |
| 166 | 162 |
| 167 </body> | 163 </body> |
| 168 </html> | 164 </html> |
| OLD | NEW |