| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 This test uses data only, and thus does not require fake media devices. | 3 This test uses data only, 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 Data-Only Connection Test with Promises</title> | 9 <title>RTCPeerConnection Data-Only Connection Test with Promises</title> |
| 10 </head> | 10 </head> |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 }) | 112 }) |
| 113 .catch(test.step_func(function(e) { | 113 .catch(test.step_func(function(e) { |
| 114 assert_unreached('Error ' + e.name + ': ' + e.message + | 114 assert_unreached('Error ' + e.name + ': ' + e.message + |
| 115 ' happened at step ' + atStep); | 115 ' happened at step ' + atStep); |
| 116 })); | 116 })); |
| 117 }); | 117 }); |
| 118 </script> | 118 </script> |
| 119 | 119 |
| 120 </body> | 120 </body> |
| 121 </html> | 121 </html> |
| OLD | NEW |