Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | <?xml-stylesheet href="chrome://browser/content/places/places.css"?> |
michael@0 | 8 | |
michael@0 | 9 | <?xml-stylesheet href="chrome://global/skin/"?> |
michael@0 | 10 | <?xml-stylesheet href="chrome://browser/skin/places/places.css"?> |
michael@0 | 11 | |
michael@0 | 12 | <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?> |
michael@0 | 13 | |
michael@0 | 14 | <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/selectBookmark.dtd"> |
michael@0 | 15 | |
michael@0 | 16 | <dialog id="selectBookmarkDialog" |
michael@0 | 17 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 18 | title="&selectBookmark.title;" style="width: 32em;" |
michael@0 | 19 | persist="screenX screenY width height" screenX="24" screenY="24" |
michael@0 | 20 | onload="SelectBookmarkDialog.init();" |
michael@0 | 21 | ondialogaccept="SelectBookmarkDialog.accept();"> |
michael@0 | 22 | |
michael@0 | 23 | <script type="application/javascript" |
michael@0 | 24 | src="chrome://browser/content/preferences/selectBookmark.js"/> |
michael@0 | 25 | |
michael@0 | 26 | <description>&selectBookmark.label;</description> |
michael@0 | 27 | |
michael@0 | 28 | <separator class="thin"/> |
michael@0 | 29 | |
michael@0 | 30 | <tree id="bookmarks" flex="1" type="places" |
michael@0 | 31 | style="height: 15em;" |
michael@0 | 32 | hidecolumnpicker="true" |
michael@0 | 33 | seltype="single" |
michael@0 | 34 | ondblclick="SelectBookmarkDialog.onItemDblClick();" |
michael@0 | 35 | onselect="SelectBookmarkDialog.selectionChanged();"> |
michael@0 | 36 | <treecols> |
michael@0 | 37 | <treecol id="title" flex="1" primary="true" hideheader="true"/> |
michael@0 | 38 | </treecols> |
michael@0 | 39 | <treechildren id="bookmarksChildren" flex="1"/> |
michael@0 | 40 | </tree> |
michael@0 | 41 | |
michael@0 | 42 | <separator class="thin"/> |
michael@0 | 43 | |
michael@0 | 44 | </dialog> |