mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
144fe84987
MozReview-Commit-ID: J74Jg3xkJNe --HG-- extra : rebase_source : f210762a50ec02fc3e80449b3bdc6408b0613f48
57 lines
2.2 KiB
XML
57 lines
2.2 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/content/preferences/siteDataSettings.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/preferences/in-content/siteDataSettings.css" type="text/css"?>
|
|
|
|
<!DOCTYPE dialog SYSTEM "chrome://browser/locale/preferences/siteDataSettings.dtd" >
|
|
|
|
<window id="SiteDataSettingsDialog" windowtype="Browser:SiteDataSettings"
|
|
class="windowDialog" title="&window.title;"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
style="width: 45em;"
|
|
onload="gSiteDataSettings.init();"
|
|
persist="screenX screenY width height">
|
|
|
|
<script src="chrome://browser/content/preferences/siteDataSettings.js"/>
|
|
|
|
<stringbundle id="bundlePreferences"
|
|
src="chrome://browser/locale/preferences/preferences.properties"/>
|
|
|
|
<vbox flex="1">
|
|
<description>&settings.description;</description>
|
|
<separator class="thin"/>
|
|
|
|
<hbox id="searchBoxContainer">
|
|
<label accesskey="&search.accesskey;" control="searchBox">&search.label;</label>
|
|
<textbox id="searchBox" type="search" flex="1"/>
|
|
</hbox>
|
|
<separator class="thin"/>
|
|
|
|
<richlistbox id="sitesList" orient="vertical" flex="1">
|
|
<listheader>
|
|
<treecol flex="4" width="50" label="&hostCol.label;" id="hostCol"/>
|
|
<treecol flex="2" width="50" label="&statusCol.label;" id="statusCol"/>
|
|
<treecol flex="1" width="50" label="&usageCol.label;" id="usageCol"/>
|
|
</listheader>
|
|
</richlistbox>
|
|
</vbox>
|
|
|
|
<hbox align="start">
|
|
<button id="removeSelected" label="&removeSelected.label;" accesskey="&removeSelected.accesskey;"/>
|
|
</hbox>
|
|
|
|
<vbox align="end">
|
|
<hbox>
|
|
<button id="cancel" label="&cancel.label;" accesskey="&cancel.accesskey;"/>
|
|
<button id="save" label="&save.label;" accesskey="&save.accesskey;"/>
|
|
</hbox>
|
|
</vbox>
|
|
|
|
</window>
|