Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(802)

Unified Diff: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js

Issue 2351823003: [DevTools] Remove a bunch of styles from inspectorStyle.css. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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) {

Powered by Google App Engine
This is Rietveld 408576698