Home | History | Annotate | Download | only in front-end

Lines Matching refs:toolbar

32 WebInspector.Toolbar = function()
34 this.element = document.getElementById("toolbar");
37 this._dropdownButton = document.getElementById("toolbar-dropdown-arrow");
44 WebInspector.Toolbar.prototype = {
62 if (target.hasStyleClass("toolbar-item") && target.hasStyleClass("toggleable"))
65 if (target !== this.element && !target.hasStyleClass("toolbar-item"))
130 var toolbar = document.getElementById("toolbar");
138 WebInspector.Toolbar.createPanelToolbarItem = function(panel)
141 toolbarItem.className = "toolbar-item toggleable";
146 WebInspector.toolbar._updateDropdownButtonAndHideDropdown();
151 var iconElement = toolbarItem.createChild("div", "toolbar-icon");
154 toolbarItem.createChild("div", "toolbar-label").textContent = panel.toolbarItemLabel;
164 this._toolbar = document.getElementById("toolbar");
165 this._arrow = document.getElementById("toolbar-dropdown-arrow");
167 this.element.id = "toolbar-dropdown";
205 var toolbarItems = this._toolbar.querySelectorAll(".toolbar-item.toggleable");
209 this._contentElement.appendChild(WebInspector.Toolbar.createPanelToolbarItem(toolbarItems[i].panel));