tor-browser

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

selectBookmark.xhtml (1781B)


      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/. -->
      5 
      6 <?csp default-src chrome:; style-src chrome: 'unsafe-inline'; ?>
      7 
      8 <window
      9  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     10  xmlns:html="http://www.w3.org/1999/xhtml"
     11  data-l10n-id="select-bookmark-window2"
     12  data-l10n-attrs="title, style"
     13  persist="width height"
     14 >
     15  <dialog id="selectBookmarkDialog">
     16    <linkset>
     17      <html:link
     18        rel="stylesheet"
     19        href="chrome://browser/content/places/places.css"
     20      />
     21 
     22      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     23      <html:link
     24        rel="stylesheet"
     25        href="chrome://browser/skin/places/tree-icons.css"
     26      />
     27 
     28      <html:link
     29        rel="localization"
     30        href="browser/preferences/selectBookmark.ftl"
     31      />
     32    </linkset>
     33 
     34    <script src="chrome://browser/content/preferences/dialogs/selectBookmark.js" />
     35    <script src="chrome://global/content/globalOverlay.js" />
     36    <script src="chrome://browser/content/utilityOverlay.js" />
     37    <script src="chrome://browser/content/places/places-tree.js" />
     38 
     39    <description data-l10n-id="select-bookmark-desc" />
     40 
     41    <separator class="thin" />
     42 
     43    <tree
     44      id="bookmarks"
     45      flex="1"
     46      is="places-tree"
     47      style="height: 15em"
     48      hidecolumnpicker="true"
     49      seltype="single"
     50      disableUserActions="true"
     51    >
     52      <treecols>
     53        <treecol id="title" flex="1" primary="true" hideheader="true" />
     54      </treecols>
     55      <treechildren id="bookmarksChildren" flex="1" />
     56    </tree>
     57 
     58    <separator class="thin" />
     59  </dialog>
     60 </window>