mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
bce1b3b905
114268 - unnecessarily setting localname attribute on all pref-based elements when loading pref panels. r=ben sr=hewitt
79 lines
3.4 KiB
XML
79 lines
3.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"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-debug1.dtd" >
|
|
|
|
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="parent.initPanel('chrome://communicator/content/pref/pref-debug1.xul');"
|
|
headertitle="&lHeader;">
|
|
|
|
<script type="application/x-javascript">
|
|
<![CDATA[
|
|
var _elementIDs = ["nglayoutDebugPaintFlashing", "nglayoutDebugPaintDumping",
|
|
"nglayoutDebugInvalidateDumping", "nglayoutDebugEventDumping",
|
|
"nglayoutDebugMotionEventDumping", "nglayoutDebugCrossingEventDumping",
|
|
"layoutReflowShowFrameCounts", "layoutReflowDumpFrameCounts",
|
|
"layoutReflowDumpFrameByFrameCounts" ];
|
|
]]>
|
|
</script>
|
|
|
|
<!-- nothing on this page has accesskeys because this is a temporary debug
|
|
panel and you can damn well click the widgets! -->
|
|
|
|
<!-- Event Debugging -->
|
|
<groupbox>
|
|
<caption label="&debugEventDebugging.label;"/>
|
|
<vbox align="start">
|
|
<checkbox id="nglayoutDebugPaintFlashing" label="&debugPaintFlashing.label;"
|
|
prefstring="nglayout.debug.paint_flashing"/>
|
|
<checkbox id="nglayoutDebugPaintDumping" label="&debugPaintDumping.label;"
|
|
prefstring="nglayout.debug.paint_dumping"/>
|
|
<checkbox id="nglayoutDebugInvalidateDumping" label="&debugInvalidateDumping.label;"
|
|
prefstring="nglayout.debug.invalidate_dumping"/>
|
|
<checkbox id="nglayoutDebugEventDumping" label="&debugEventDumping.label;"
|
|
prefstring="nglayout.debug.invalidate_dumping"/>
|
|
<checkbox id="nglayoutDebugMotionEventDumping" label="&debugMotionEventDumping.label;"
|
|
prefstring="nglayout.debug.motion_event_dumping"/>
|
|
<checkbox id="nglayoutDebugCrossingEventDumping" label="&debugCrossingEventDumping.label;"
|
|
prefstring="nglayout.debug.motion_event_dumping"/>
|
|
</vbox>
|
|
</groupbox>
|
|
|
|
<!-- Reflow events -->
|
|
<groupbox>
|
|
<caption label="&debugReflowEvents.label;"/>
|
|
<vbox align="start">
|
|
<checkbox id="layoutReflowShowFrameCounts" label="&debugReflowShowFrameCounts.label;"
|
|
prefstring="layout.reflow.showframecounts"/>
|
|
<checkbox id="layoutReflowDumpFrameCounts" label="&debugReflowDumpFrameCounts.label;"
|
|
prefstring="layout.reflow.dumpframecounts"/>
|
|
<checkbox id="layoutReflowDumpFrameByFrameCounts" label="&debugReflowDumpFrameByFrameCounts.label;"
|
|
prefstring="layout.reflow.dumpframebyframecounts"/>
|
|
</vbox>
|
|
</groupbox>
|
|
|
|
|
|
</page>
|
|
|