mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
85 lines
4.0 KiB
XML
85 lines
4.0 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
The contents of this file are subject to the Netscape Public
|
|
License Version 1.1 (the "License"); you may not use this file
|
|
except in compliance with the License. You may obtain a copy of
|
|
the License at http://www.mozilla.org/NPL/
|
|
|
|
Software distributed under the License is distributed on an "AS
|
|
IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
rights and limitations under the License.
|
|
|
|
The Original Code is Mozilla Communicator client code, released
|
|
March 31, 1998.
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
Communications Corporation. Portions created by Netscape are
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
-->
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-debug.dtd" >
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
class="color-dialog"
|
|
orient="vertical"
|
|
onload="parent.initPanel('chrome://communicator/content/pref/pref-debug.xul');">
|
|
|
|
<script language="JavaScript">
|
|
<![CDATA[
|
|
var _elementIDs = ["nglayoutDebugWindow",
|
|
"debugXULBoxes", "nglayoutDebugUseXBLForms", "nglayoutDebugDisableXULCache", "browserEnableCache",
|
|
"browserEnableDiskCache", "nglayoutDebugEnableXPCOMRefcntLog", "showAboutAsStupidModalWindow",
|
|
"browserEnableTBDnD"];
|
|
]]>
|
|
</script>
|
|
|
|
<box class="box-smallheader" title="&lHeader;"/>
|
|
|
|
<titledbox orient="vertical" autostretch="never">
|
|
<title><text value="&widgetRendering.label;"/></title>
|
|
<checkbox id="nglayoutDebugWindow" value="&debugWindow.label;"
|
|
pref="true" preftype="bool" prefstring="nglayout.widget.debugWindow"
|
|
prefattribute="checked"/>
|
|
<checkbox id="debugXULBoxes" value="&debugXULBox.label;"
|
|
pref="true" preftype="bool" prefstring="xul.debug.box"
|
|
prefattribute="checked"/>
|
|
</titledbox>
|
|
|
|
<!-- nothing on this page has accesskeys because this is a temporary debug
|
|
panel and you can damn well click the widgets! -->
|
|
<titledbox orient="vertical" autostretch="never">
|
|
<title><text value="&debugMiscellaneous.label;"/></title>
|
|
<checkbox id="nglayoutDebugUseXBLForms" value="Use XBL-based form controls (takes effect after restart). Don't file bugs on these controls; they are still under construction."
|
|
pref="true" preftype="bool" prefstring="nglayout.debug.enable_xbl_forms"
|
|
prefattribute="checked"/>
|
|
<checkbox id="nglayoutDebugDisableXULCache" value="&debugDisableXULCache.label;"
|
|
pref="true" preftype="bool" prefstring="nglayout.debug.disable_xul_cache"
|
|
prefattribute="checked"/>
|
|
<checkbox id="browserEnableCache" value="&debugEnableMemCache.label;"
|
|
pref="true" preftype="bool" prefstring="browser.enable.cache"
|
|
prefattribute="checked"/>
|
|
<checkbox id="browserEnableTBDnD" value="&debugEnableTBDnD.label;"
|
|
pref="true" preftype="bool" prefstring="browser.enable.tb_dnd"
|
|
prefattribute="checked"/>
|
|
<checkbox id="browserEnableDiskCache" value="&debugEnableDiskCache.label;"
|
|
pref="true" preftype="bool" prefstring="browser.cache.disk.enable"
|
|
prefattribute="checked"/>
|
|
<checkbox id="nglayoutDebugEnableXPCOMRefcntLog" value="&debugEnableXPCOMRefcntLog.label;"
|
|
pref="true" preftype="bool" prefstring="nglayout.debug.enable_xpcom_refcnt_log"
|
|
prefattribute="checked"/>
|
|
<checkbox id="showAboutAsStupidModalWindow" value="&debugShowAboutAsStupidModalWindow.label;"
|
|
pref="true" preftype="bool" prefstring="browser.show_about_as_stupid_modal_window"
|
|
prefattribute="checked"/>
|
|
</titledbox>
|
|
|
|
|
|
</window>
|
|
|