browser/components/downloads/content/contentAreaDownloadsView.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0"?>
     3 # This Source Code Form is subject to the terms of the Mozilla Public
     4 # License, v. 2.0. If a copy of the MPL was not distributed with this
     5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     7 <?xml-stylesheet href="chrome://global/skin/"?>
     8 <?xml-stylesheet href="chrome://browser/content/downloads/contentAreaDownloadsView.css"?>
     9 <?xml-stylesheet href="chrome://browser/skin/downloads/contentAreaDownloadsView.css"?>
    11 <?xul-overlay href="chrome://browser/content/downloads/allDownloadsViewOverlay.xul"?>
    13 <?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
    15 <!DOCTYPE window [
    16 <!ENTITY % downloadsDTD SYSTEM "chrome://browser/locale/downloads/downloads.dtd">
    17 %downloadsDTD;
    18 ]>
    20 <window id="contentAreaDownloadsView"
    21         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    22         title="&downloads.title;"
    23         onload="ContentAreaDownloadsView.init();">
    25   <script type="application/javascript"
    26           src="chrome://global/content/globalOverlay.js"/>
    27   <script type="application/javascript"
    28           src="chrome://browser/content/downloads/contentAreaDownloadsView.js"/>
    30   <commandset id="editMenuCommands"/>
    32   <keyset id="editMenuKeys">
    33 #ifdef XP_MACOSX
    34     <key id="key_delete2" keycode="VK_BACK" command="cmd_delete"/>
    35 #endif
    36   </keyset>
    38   <stack flex="1">
    39     <richlistbox id="downloadsRichListBox"/>
    40     <description id="downloadsListEmptyDescription"
    41                  value="&downloadsListEmpty.label;"
    42                  mousethrough="always"/>
    43   </stack>
    44   <commandset id="downloadCommands"/>
    45   <menupopup id="downloadsContextMenu"/>
    46 </window>

mercurial