diff options
author | Matt A. Tobin <email@mattatobin.com> | 2016-10-16 19:34:53 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2016-10-16 19:34:53 -0400 |
commit | 81805ce3f63e2e4a799bd54f174083c58a9b5640 (patch) | |
tree | 6e13374b213ac9b2ae74c25d8aac875faf71fdd0 /toolkit/devtools/framework/toolbox-window.xul | |
parent | 28c8da71bf521bb3ee76f27b8a241919e24b7cd5 (diff) | |
download | palemoon-gre-81805ce3f63e2e4a799bd54f174083c58a9b5640.tar.gz |
Move Mozilla DevTools to Platform - Part 3: Merge the browser/devtools and toolkit/devtools adjusting for directory collisions
Diffstat (limited to 'toolkit/devtools/framework/toolbox-window.xul')
-rw-r--r-- | toolkit/devtools/framework/toolbox-window.xul | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/toolkit/devtools/framework/toolbox-window.xul b/toolkit/devtools/framework/toolbox-window.xul new file mode 100644 index 000000000..880445e83 --- /dev/null +++ b/toolkit/devtools/framework/toolbox-window.xul @@ -0,0 +1,32 @@ +<?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"?> + +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + id="devtools-toolbox-window" + macanimationtype="document" + fullscreenbutton="true" + windowtype="devtools:toolbox" + width="900" height="320" + persist="screenX screenY width height sizemode"> + + <commandset id="toolbox-commandset"> + <command id="toolbox-cmd-close" oncommand="window.close();"/> + </commandset> + + <keyset id="toolbox-keyset"> + <key id="toolbox-key-close" + key="&closeCmd.key;" + command="toolbox-cmd-close" + modifiers="accel"/> + </keyset> + + <iframe id="toolbox-iframe" flex="1" forceOwnRefreshDriver=""></iframe> +</window> |