browser/components/places/content/bookmarkProperties.xul

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 <?xml version="1.0"?>
michael@0 2
michael@0 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 6
michael@0 7 <?xml-stylesheet href="chrome://global/skin/"?>
michael@0 8 <?xml-stylesheet href="chrome://browser/skin/places/editBookmarkOverlay.css"?>
michael@0 9 <?xml-stylesheet href="chrome://browser/skin/places/places.css"?>
michael@0 10 <?xml-stylesheet href="chrome://browser/content/places/places.css"?>
michael@0 11
michael@0 12 <?xul-overlay href="chrome://browser/content/places/placesOverlay.xul"?>
michael@0 13 <?xul-overlay href="chrome://browser/content/places/editBookmarkOverlay.xul"?>
michael@0 14
michael@0 15 <!DOCTYPE dialog [
michael@0 16 <!ENTITY % editBookmarkOverlayDTD SYSTEM "chrome://browser/locale/places/editBookmarkOverlay.dtd">
michael@0 17 %editBookmarkOverlayDTD;
michael@0 18 ]>
michael@0 19
michael@0 20 <dialog id="bookmarkproperties"
michael@0 21 buttons="accept, cancel"
michael@0 22 buttoniconaccept="save"
michael@0 23 ondialogaccept="BookmarkPropertiesPanel.onDialogAccept();"
michael@0 24 ondialogcancel="BookmarkPropertiesPanel.onDialogCancel();"
michael@0 25 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 26 onload="BookmarkPropertiesPanel.onDialogLoad();"
michael@0 27 onunload="BookmarkPropertiesPanel.onDialogUnload();"
michael@0 28 style="min-width: 30em;"
michael@0 29 persist="screenX screenY width">
michael@0 30
michael@0 31 <stringbundleset id="stringbundleset">
michael@0 32 <stringbundle id="stringBundle"
michael@0 33 src="chrome://browser/locale/places/bookmarkProperties.properties"/>
michael@0 34 </stringbundleset>
michael@0 35
michael@0 36 <script type="application/javascript"
michael@0 37 src="chrome://browser/content/places/editBookmarkOverlay.js"/>
michael@0 38 <script type="application/javascript"
michael@0 39 src="chrome://browser/content/places/bookmarkProperties.js"/>
michael@0 40
michael@0 41 <vbox id="editBookmarkPanelContent"/>
michael@0 42
michael@0 43 </dialog>

mercurial