| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 This test creates a data channel between two local PeerConnection instances | 3 This test creates a data channel between two local PeerConnection instances |
| 4 and ensures that an empty string sent by one is received by the second. | 4 and ensures that an empty string sent by one is received by the second. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | 9 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| 10 <title>RTCPeerConnection Data Channel Empty String Test</title> | 10 <title>RTCPeerConnection Data Channel Empty String Test</title> |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 .then(exchangeDescription(gFirstConnection, gSecondConnection)) | 99 .then(exchangeDescription(gFirstConnection, gSecondConnection)) |
| 100 .catch(test.step_func(function(e) { | 100 .catch(test.step_func(function(e) { |
| 101 assert_unreached('Error ' + e.name + ': ' + e.message); | 101 assert_unreached('Error ' + e.name + ': ' + e.message); |
| 102 })); | 102 })); |
| 103 }); | 103 }); |
| 104 </script> | 104 </script> |
| 105 | 105 |
| 106 </body> | 106 </body> |
| 107 </html> | 107 </html> |
| 108 | 108 |
| OLD | NEW |