Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
| index dfad8895ea07edd5c4bc1b3f0e30c0a0b15271c4..dbb94c9fde33b27bce092607bd9c82995c55579e 100644 |
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
| @@ -738,7 +738,7 @@ WebInspector.ConsoleViewMessage.prototype = { |
| return; |
| rootElement.removeChildren(); |
| if (wasThrown) { |
| - var element = rootElement.createChild("span", "error-message"); |
|
lushnikov
2016/09/20 17:58:28
why remove the red color? it is helpful
dgozman
2016/09/20 18:11:13
I wasn't able to trigger this code. It's a part of
|
| + var element = rootElement.createChild("span"); |
| element.textContent = WebInspector.UIString("<exception>"); |
| element.title = /** @type {string} */ (result.description); |
| } else if (isArrayEntry) { |