tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bookmarkProperties.xhtml (2018B)


      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:; style-src chrome: 'unsafe-inline'; ?>
      8 
      9 <!DOCTYPE window>
     10 
     11 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     12        xmlns:html="http://www.w3.org/1999/xhtml"
     13        id="bookmarkproperties"
     14        headerparent="bookmarkpropertiesdialog"
     15        neediconheader="true"
     16        style="min-width: 40em;">
     17 <dialog id="bookmarkpropertiesdialog"
     18        buttons="accept, cancel">
     19 
     20  <linkset>
     21    <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     22    <html:link
     23      rel="stylesheet"
     24      href="chrome://global/content/commonDialog.css"
     25    />
     26    <html:link rel="stylesheet" href="chrome://global/skin/commonDialog.css" />
     27    <html:link
     28      rel="stylesheet"
     29      href="chrome://browser/skin/places/editBookmark.css"
     30    />
     31    <html:link
     32      rel="stylesheet"
     33      href="chrome://browser/skin/places/tree-icons.css"
     34    />
     35    <html:link
     36      rel="stylesheet"
     37      href="chrome://browser/content/places/places.css"
     38    />
     39 
     40    <html:link rel="localization" href="browser/editBookmarkOverlay.ftl"/>
     41  </linkset>
     42 
     43  <stringbundleset id="stringbundleset">
     44    <stringbundle id="stringBundle"
     45                  src="chrome://browser/locale/places/bookmarkProperties.properties"/>
     46  </stringbundleset>
     47 
     48  <script src="chrome://browser/content/places/editBookmark.js"/>
     49  <script src="chrome://browser/content/places/bookmarkProperties.js"/>
     50  <script src="chrome://global/content/globalOverlay.js"/>
     51  <script src="chrome://global/content/editMenuOverlay.js"/>
     52  <script src="chrome://browser/content/utilityOverlay.js"/>
     53  <script src="chrome://browser/content/places/places-tree.js"/>
     54  <script src="chrome://global/content/adjustableTitle.js"/>
     55 
     56 #include editBookmarkPanel.inc.xhtml
     57 
     58 </dialog>
     59 </window>