| Index: third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| index bc6b3bf67fed99799cbb31c02f16cc8a22eda873..c8a3456c35b8e2c0b0e955021e91eaf1b5469d0d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
|
| @@ -535,7 +535,8 @@ UI.TabbedPane = class extends UI.VBox {
|
|
|
| _createDropDownButton() {
|
| var dropDownContainer = createElementWithClass('div', 'tabbed-pane-header-tabs-drop-down-container');
|
| - dropDownContainer.createChild('div', 'glyph');
|
| + var chevronIcon = UI.Icon.create('largeicon-chevron', 'chevron-icon');
|
| + dropDownContainer.appendChild(chevronIcon);
|
| this._dropDownMenu = new UI.DropDownMenu(dropDownContainer);
|
| this._dropDownMenu.addEventListener(UI.DropDownMenu.Events.ItemSelected, this._dropDownMenuItemSelected, this);
|
|
|
|
|