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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.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/sources/WatchExpressionsSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
index f7b2ad8ba71acc6d858082f843e77345636f2602..d1b17f32b8c43c011928c7c6891aea853bb04ea6 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/WatchExpressionsSidebarPane.js
@@ -367,7 +367,7 @@ WebInspector.WatchExpression.prototype = {
var titleElement = headerElement.createChild("div", "watch-expression-title");
this._nameElement = WebInspector.ObjectPropertiesSection.createNameElement(this._expression);
if (!!exceptionDetails || !result) {
- this._valueElement = createElementWithClass("span", "error-message value");
+ this._valueElement = createElementWithClass("span", "watch-expression-error value");
titleElement.classList.add("dimmed");
this._valueElement.textContent = WebInspector.UIString("<not available>");
} else {

Powered by Google App Engine
This is Rietveld 408576698