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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/NetworkConditionsSelector.js

Issue 1872693002: [DevTools] Fix bad unicode symbols in network conditions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/components/NetworkConditionsSelector.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/NetworkConditionsSelector.js b/third_party/WebKit/Source/devtools/front_end/components/NetworkConditionsSelector.js
index 5f9d8f2d7bcac0b1705a0463f426910725491a25..161405cb9532ba3f9770b585f39ce7ae04603fd6 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/NetworkConditionsSelector.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/NetworkConditionsSelector.js
@@ -147,7 +147,7 @@ WebInspector.NetworkConditionsSelector.decorateSelect = function(selectElement)
options.push(null);
}
for (var conditions of group.items) {
- var title = WebInspector.NetworkConditionsSelector._conditionsTitle(conditions);
+ var title = WebInspector.NetworkConditionsSelector._conditionsTitle(conditions, true);
var option = new Option(title.text, title.text);
option.title = title.title;
groupElement.appendChild(option);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698