mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e729ac636a
r=Mano
30 lines
1.1 KiB
XML
30 lines
1.1 KiB
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/. -->
|
|
|
|
<?xul-overlay href="chrome://browser/content/downloads/allDownloadsViewOverlay.xul"?>
|
|
|
|
<overlay id="downloadsViewOverlay"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<script type="application/javascript"><![CDATA[
|
|
const DOWNLOADS_QUERY = "place:transition=" +
|
|
Components.interfaces.nsINavHistoryService.TRANSITION_DOWNLOAD +
|
|
"&sort=" +
|
|
Components.interfaces.nsINavHistoryQueryOptions.SORT_BY_DATE_DESCENDING;
|
|
|
|
ContentArea.setContentViewForQueryString(DOWNLOADS_QUERY,
|
|
function() new DownloadsPlacesView(document.getElementById("downloadsRichListBox")),
|
|
{ showDetailsPane: false });
|
|
]]></script>
|
|
|
|
<window id="places">
|
|
<commandset id="downloadCommands"/>
|
|
<menupopup id="downloadsContextMenu"/>
|
|
</window>
|
|
|
|
<deck id="placesViewsDeck">
|
|
<richlistbox id="downloadsRichListBox"/>
|
|
</deck>
|
|
</overlay>
|