mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
73 lines
2.7 KiB
XML
73 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- 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/. -->
|
|
<!DOCTYPE window [
|
|
<!ENTITY % toolboxDTD SYSTEM "chrome://browser/locale/devtools/toolbox.dtd" >
|
|
%toolboxDTD;
|
|
]>
|
|
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
|
|
<?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/javascript;version=1.8"
|
|
src="chrome://browser/content/devtools/theme-switching.js"/>
|
|
<script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
|
|
|
|
<commandset id="editMenuCommands"/>
|
|
<keyset id="editMenuKeys"/>
|
|
<keyset id="toolbox-keyset">
|
|
<key id="toolbox-options-key"
|
|
key="&toolboxOptionsButton.key;"
|
|
oncommand="void(0);"
|
|
modifiers="shift, accel"/>
|
|
<key id="toolbox-next-tool-key"
|
|
key="&toolboxNextTool.key;"
|
|
oncommand="void(0);"
|
|
modifiers="accel"/>
|
|
<key id="toolbox-previous-tool-key"
|
|
key="&toolboxPreviousTool.key;"
|
|
oncommand="void(0);"
|
|
modifiers="accel"/>
|
|
<key id="toolbox-zoom-in-key"
|
|
key="&toolboxZoomIn.key;"
|
|
oncommand="void(0);"
|
|
modifiers="accel"/>
|
|
<key id="toolbox-zoom-in-key2"
|
|
key="&toolboxZoomIn.key2;"
|
|
oncommand="void(0);"
|
|
modifiers="accel"/>
|
|
<key id="toolbox-zoom-out-key"
|
|
key="&toolboxZoomOut.key;"
|
|
oncommand="void(0);"
|
|
modifiers="accel"/>
|
|
<key id="toolbox-zoom-reset-key"
|
|
key="&toolboxZoomReset.key;"
|
|
oncommand="void(0);"
|
|
modifiers="accel"/>
|
|
</keyset>
|
|
|
|
<notificationbox id="toolbox-notificationbox" flex="1">
|
|
<toolbar class="devtools-tabbar">
|
|
<hbox id="toolbox-picker-container" />
|
|
<hbox id="toolbox-tabs" flex="1" />
|
|
<hbox id="toolbox-buttons" pack="end"/>
|
|
<vbox id="toolbox-controls-separator"/>
|
|
<hbox id="toolbox-option-container"/>
|
|
<hbox id="toolbox-controls">
|
|
<hbox id="toolbox-dock-buttons"/>
|
|
<toolbarbutton id="toolbox-close"
|
|
class="devtools-closebutton"
|
|
tooltiptext="&toolboxCloseButton.tooltip;"/>
|
|
</hbox>
|
|
</toolbar>
|
|
<vbox flex="1">
|
|
<deck id="toolbox-deck" flex="1" minheight="75" />
|
|
<splitter id="toolbox-console-splitter" class="devtools-horizontal-splitter" hidden="true" />
|
|
<box minheight="75" flex="1" id="toolbox-panel-webconsole" collapsed="true" />
|
|
</vbox>
|
|
</notificationbox>
|
|
</window>
|