| Index: chrome/test/data/webrtc/manual/peerconnection_manual.js
|
| diff --git a/chrome/test/data/webrtc/manual/peerconnection_manual.js b/chrome/test/data/webrtc/manual/peerconnection_manual.js
|
| index a8ce31df9933a78e33cd6e301bc6585578d7e9e9..1a0b8e6d7902466a3b3624959d2c7de64766ce00 100644
|
| --- a/chrome/test/data/webrtc/manual/peerconnection_manual.js
|
| +++ b/chrome/test/data/webrtc/manual/peerconnection_manual.js
|
| @@ -1156,16 +1156,15 @@ function error_(message) {
|
| * @param {string} color Color of the text.
|
| */
|
| function print_handler_(message, textField, color) {
|
| - if (color == 'red' )
|
| - throw new Error(message);
|
| -
|
| if (color == 'green' )
|
| message += ' success';
|
|
|
| $(textField).innerHTML += '<span style="color:' + color + ';">' + message +
|
| '</span><br>'
|
| -
|
| console.log(message);
|
| +
|
| + if (color == 'red' )
|
| + throw new Error(message);
|
| }
|
|
|
| /**
|
|
|