Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
1 <?xml version="1.0"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
7 <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
9 <?xml-stylesheet href="chrome://global/skin/"?>
10 <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
12 <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
14 <!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/selectBookmark.dtd">
16 <dialog id="selectBookmarkDialog"
17 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
18 title="&selectBookmark.title;" style="width: 32em;"
19 persist="screenX screenY width height" screenX="24" screenY="24"
20 onload="SelectBookmarkDialog.init();"
21 ondialogaccept="SelectBookmarkDialog.accept();">
23 <script type="application/javascript"
24 src="chrome://browser/content/preferences/selectBookmark.js"/>
26 <description>&selectBookmark.label;</description>
28 <separator class="thin"/>
30 <tree id="bookmarks" flex="1" type="places"
31 style="height: 15em;"
32 hidecolumnpicker="true"
33 seltype="single"
34 ondblclick="SelectBookmarkDialog.onItemDblClick();"
35 onselect="SelectBookmarkDialog.selectionChanged();">
36 <treecols>
37 <treecol id="title" flex="1" primary="true" hideheader="true"/>
38 </treecols>
39 <treechildren id="bookmarksChildren" flex="1"/>
40 </tree>
42 <separator class="thin"/>
44 </dialog>