| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 This test uses the legacy callback API with no media, and thus does not require
fake media devices. | 3 This test uses the legacy callback API with no media, and thus does not require
fake media devices. |
| 4 --> | 4 --> |
| 5 | 5 |
| 6 <html> | 6 <html> |
| 7 <head> | 7 <head> |
| 8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 8 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 9 <title>RTCPeerConnection No-Media Connection Test</title> | 9 <title>RTCPeerConnection No-Media Connection Test</title> |
| 10 </head> | 10 </head> |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 130 |
| 131 // The offerToReceiveVideo is necessary and sufficient to make | 131 // The offerToReceiveVideo is necessary and sufficient to make |
| 132 // an actual connection. | 132 // an actual connection. |
| 133 gFirstConnection.createOffer(onOfferCreated, failed('createOffer'), | 133 gFirstConnection.createOffer(onOfferCreated, failed('createOffer'), |
| 134 {offerToReceiveVideo: true}); | 134 {offerToReceiveVideo: true}); |
| 135 }); | 135 }); |
| 136 </script> | 136 </script> |
| 137 | 137 |
| 138 </body> | 138 </body> |
| 139 </html> | 139 </html> |
| OLD | NEW |