contentAreaDownloadsView.xhtml (2292B)
1 <?xml version="1.0"?> 2 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/. 6 7 <?csp default-src chrome:; img-src chrome: moz-icon:; object-src 'none'; ?> 8 9 <!DOCTYPE window> 10 11 <window id="contentAreaDownloadsView" 12 data-l10n-id="downloads-window" 13 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 14 xmlns:html="http://www.w3.org/1999/xhtml"> 15 16 <linkset> 17 <html:link rel="stylesheet" href="chrome://global/skin/global.css" /> 18 <html:link 19 rel="stylesheet" 20 href="chrome://browser/content/downloads/contentAreaDownloadsView.css" 21 /> 22 <html:link 23 rel="stylesheet" 24 href="chrome://browser/skin/downloads/contentAreaDownloadsView.css" 25 /> 26 <html:link 27 rel="stylesheet" 28 href="chrome://browser/content/downloads/downloads.css" 29 /> 30 <html:link 31 rel="stylesheet" 32 href="chrome://browser/skin/downloads/allDownloadsView.css" 33 /> 34 35 <html:link rel="localization" href="toolkit/global/textActions.ftl"/> 36 <html:link rel="localization" href="browser/downloads.ftl" /> 37 <html:link rel="localization" href="toolkit/global/tor-browser.ftl" /> 38 </linkset> 39 40 <script src="chrome://global/content/globalOverlay.js"/> 41 <script src="chrome://browser/content/downloads/contentAreaDownloadsView.js"/> 42 <script src="chrome://browser/content/downloads/allDownloadsView.js"/> 43 <script src="chrome://global/content/contentAreaUtils.js"/> 44 <script src="chrome://global/content/editMenuOverlay.js"/> 45 46 #include ../../../../toolkit/content/editMenuKeys.inc.xhtml 47 #ifdef XP_MACOSX 48 <keyset id="editMenuKeysExtra"> 49 <key id="key_delete2" keycode="VK_BACK" command="cmd_delete"/> 50 </keyset> 51 #endif 52 53 <html:moz-message-bar id="aboutDownloadsTorWarning"></html:moz-message-bar> 54 55 <richlistbox flex="1" 56 seltype="multiple" 57 id="downloadsListBox" 58 class="allDownloadsListBox" 59 context="downloadsContextMenu"/> 60 <description id="downloadsListEmptyDescription" 61 data-l10n-id="downloads-list-empty"/> 62 #include downloadsCommands.inc.xhtml 63 #include downloadsContextMenu.inc.xhtml 64 </window>