| Index: content/browser/resources/media/peer_connection_update_table.js
|
| diff --git a/content/browser/resources/media/peer_connection_update_table.js b/content/browser/resources/media/peer_connection_update_table.js
|
| index f3475a8174a938143caca6d76b5a3041533aad20..8f5faebc216167e906cef5179c7cf7e977d66c81 100644
|
| --- a/content/browser/resources/media/peer_connection_update_table.js
|
| +++ b/content/browser/resources/media/peer_connection_update_table.js
|
| @@ -106,6 +106,14 @@ var PeerConnectionUpdateTable = (function() {
|
| var details = row.cells[1].childNodes[0];
|
| details.appendChild(valueContainer);
|
|
|
| + // Highlight ICE failures and failure callbacks.
|
| + if ((update.type === 'iceConnectionStateChange' &&
|
| + update.value === 'ICEConnectionStateFailed') ||
|
| + update.type.indexOf('OnFailure') !== -1 ||
|
| + update.type === 'addIceCandidateFailed') {
|
| + valueContainer.parentElement.classList.add('update-log-failure');
|
| + }
|
| +
|
| var value = update.value;
|
| // map internal names and values to names and events from the
|
| // specification. This is a display change which shall not
|
|
|