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