mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
106 lines
4.4 KiB
XML
106 lines
4.4 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"?>
|
|
<?xml-stylesheet href="chrome://communicator/skin/dialogOverlay.css" type="text/css"?>
|
|
|
|
<!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 type="application/x-javascript">
|
|
<![CDATA[
|
|
var _elementIDs = ["nglayoutDebugWindow",
|
|
"debugXULBoxes", "browserDOMWindowDumpEnabled",
|
|
"javascriptOptionsStrict", "nglayoutDebugUseXBLForms",
|
|
"nglayoutDebugEnableXPCOMRefcntLog", "showAboutAsStupidModalWindow",
|
|
"acceleratorKeyValue", "menuAccessKeyValue"];
|
|
]]>
|
|
</script>
|
|
|
|
<hbox class="box-smallheader" title="&lHeader;"/>
|
|
|
|
<groupbox orient="vertical" autostretch="never">
|
|
<label value="&widgetRendering.label;"/>
|
|
<checkbox id="nglayoutDebugWindow" label="&debugWindow.label;"
|
|
pref="true" preftype="bool" prefstring="nglayout.widget.debugWindow"
|
|
prefattribute="checked"/>
|
|
<checkbox id="debugXULBoxes" label="&debugXULBox.label;"
|
|
pref="true" preftype="bool" prefstring="xul.debug.box"
|
|
prefattribute="checked"/>
|
|
</groupbox>
|
|
|
|
<!-- nothing on this page has accesskeys because this is a temporary debug
|
|
panel and you can damn well click the widgets! -->
|
|
<groupbox orient="vertical" autostretch="never">
|
|
<label value="&debugMiscellaneous.label;"/>
|
|
<checkbox id="browserDOMWindowDumpEnabled" label="&debugEnableDump.label;"
|
|
pref="true" preftype="bool" prefstring="browser.dom.window.dump.enabled"
|
|
prefattribute="checked"/>
|
|
<checkbox id="javascriptOptionsStrict" label="&debugStrictJavascript.label;"
|
|
pref="true" preftype="bool" prefstring="javascript.options.strict"
|
|
prefattribute="checked"/>
|
|
<checkbox id="nglayoutDebugUseXBLForms" label="&debugUseXBLForms.label;"
|
|
pref="true" preftype="bool" prefstring="nglayout.debug.enable_xbl_forms"
|
|
prefattribute="checked"/>
|
|
<checkbox id="nglayoutDebugEnableXPCOMRefcntLog" label="&debugEnableXPCOMRefcntLog.label;"
|
|
pref="true" preftype="bool" prefstring="nglayout.debug.enable_xpcom_refcnt_log"
|
|
prefattribute="checked"/>
|
|
<checkbox id="showAboutAsStupidModalWindow" label="&debugShowAboutAsModal.label;"
|
|
pref="true" preftype="bool" prefstring="browser.show_about_as_stupid_modal_window"
|
|
prefattribute="checked"/>
|
|
</groupbox>
|
|
|
|
|
|
<groupbox orient="vertical">
|
|
<label value="&accelerators.label;"/>
|
|
<label value="&acceleratorsBlurb.label;"/>
|
|
|
|
<grid flex="1">
|
|
<columns>
|
|
<column/>
|
|
<column/>
|
|
</columns>
|
|
|
|
<rows>
|
|
<row autostretch="never">
|
|
<text class="label" value="&acceleratorKey.label;" for="acceleratorKeyValue"/>
|
|
<textbox id="acceleratorKeyValue" pref="true" preftype="int"
|
|
prefstring="ui.key.accelKey" prefattribute="value" size="5"/>
|
|
</row>
|
|
<row autostretch="never">
|
|
<text class="label" value="&menuAccessKey.label;" for="menuAccessKeyValue"/>
|
|
<textbox id="menuAccessKeyValue" pref="true" preftype="int"
|
|
prefstring="ui.key.menuAccessKey" prefattribute="value" size="5"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
</groupbox>
|
|
|
|
</window>
|
|
|