| 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;
|
|
|