forked from mirrors/gecko-dev
This adds a skipintoolbarset to the toolbar-menubar spacer and the titlebar-buttonbox-container hbox to avoid a case where an exception can be thrown from CustomizableUI.isWidgetRemovable, which expects all direct descendants of toolbars to either have an ID, be one of a special set of node types, or have skipintoolbarset="true" set on it. Differential Revision: https://phabricator.services.mozilla.com/D13147 --HG-- extra : moz-landing-system : lando
11 lines
604 B
XML
11 lines
604 B
XML
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
<hbox class="titlebar-buttonbox-container" skipintoolbarset="true">
|
|
<hbox class="titlebar-buttonbox titlebar-color">
|
|
<toolbarbutton class="titlebar-button titlebar-min" oncommand="window.minimize();"/>
|
|
<toolbarbutton class="titlebar-button titlebar-max" oncommand="onTitlebarMaxClick();"/>
|
|
<toolbarbutton class="titlebar-button titlebar-close" command="cmd_closeWindow"/>
|
|
</hbox>
|
|
</hbox>
|