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

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.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/network/RequestHeadersView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js b/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js
index 67a88895a1ae9749e6da84464b4c10837e8e0e89..048f7caab916afdd601a4a4ac21ed1bca396c4f5 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/RequestHeadersView.js
@@ -129,7 +129,7 @@ WebInspector.RequestHeadersView.prototype = {
if (value === "")
div.classList.add("empty-value");
if (errorDecoding)
- div.createChild("span", "error-message").textContent = WebInspector.UIString("(unable to decode value)");
+ div.createChild("span", "header-decode-error").textContent = WebInspector.UIString("(unable to decode value)");
else
div.textContent = value;
return div;

Powered by Google App Engine
This is Rietveld 408576698