comparison chrome/content/leaks/leaks.xul @ 2:472a16863ecc

expanded nightly.jar
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Tue, 02 Dec 2008 20:38:20 +0900
parents
children
comparison
equal deleted inserted replaced
1:93e46514f20d 2:472a16863ecc
1 <?xml version="1.0"?>
2
3 <!DOCTYPE window SYSTEM "chrome://nightly/locale/leaks.dtd">
4
5 <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
6 <?xml-stylesheet href="chrome://nightly/skin/leaks/leaks.css" type="text/css"?>
7
8 <window id="LeakReporter" type="Nightly:LeakReporter"
9 title="&nightly.leaks.title;" style="padding: 10px; width: 80em; height: 60em"
10 persist="width height screenX screenY"
11 xmlns:xhtml="http://www.w3.org/1999/xhtml"
12 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
13
14 <xhtml:style>
15 .leaked {
16 color: red;
17 }
18
19 .uri {
20 padding-left: 2em;
21 }
22 </xhtml:style>
23
24 <script type="application/x-javascript" src="leaks.js"/>
25 <script type="application/x-javascript" src="chrome://nightly/content/platform.js" />
26
27 <stringbundleset>
28 <stringbundle id="bundle" src="chrome://nightly/locale/leaks.properties"/>
29 </stringbundleset>
30
31 <vbox style="padding-bottom: 1em">
32 <hbox align="center">
33 <label value="&nightly.leaks.logfile.label;"/>
34 <textbox id="nsprlog" onchange="textEnter()" flex="1"/>
35 <button id="filebrowse" oncommand="selectLog()" label="&nightly.leaks.browse.label;"/>
36 </hbox>
37
38 <checkbox id="showlog" oncommand="flipLog()" label="&nightly.leaks.displayfull.label;"/>
39 </vbox>
40
41 <stack flex="1">
42 <vbox align="center" pack="center">
43 <label style="font-size: 200%;" value="&nightly.leaks.loading.label;"/>
44 </vbox>
45 <tabbox id="tabbox" flex="1">
46 <tabs>
47 <tab label="&nightly.leaks.overview.label;"/>
48 <tab label="&nightly.leaks.fulllog.label;"/>
49 </tabs>
50 <tabpanels flex="1">
51 <tabpanel orient="vertical">
52 <hbox pack="start">
53 <button id="btnCopy" disabled="true" oncommand="clipboardCopy()" label="&nightly.leaks.copy.label;"/>
54 <button id="btnSave" disabled="true" oncommand="save()" label="&nightly.leaks.save.label;"/>
55 </hbox>
56 <vbox id="summary" collapsed="true">
57 <label style="font-size: 200%;" value="&nightly.leaks.summary.label;"/>
58 <separator/>
59 <label id="buildid"/>
60 <hbox><label id="date"/></hbox>
61 <separator/>
62 <label id="windowLeaks"/>
63 <label id="documentLeaks"/>
64 <label id="docshellLeaks"/>
65 </vbox>
66 <separator/>
67 <vbox id="detailsbox" flex="1" collapsed="true">
68 <label style="font-size: 200%;" value="&nightly.leaks.details.label;"/>
69 <separator/>
70 <vbox flex="1" id="details" style="overflow: auto"/>
71 </vbox>
72 </tabpanel>
73 <tabpanel orient="vertical">
74 <hbox pack="start" align="center">
75 <label value="&nightly.leaks.display.label;"/>
76 <checkbox checked="true" oncommand="changeFilter()" id="filterDocshell" label="&nightly.leaks.docshellfilter.label;"/>
77 <checkbox checked="true" oncommand="changeFilter()" id="filterWindow" label="&nightly.leaks.windowfilter.label;"/>
78 <checkbox checked="true" oncommand="changeFilter()" id="filterDocument" label="&nightly.leaks.documentfilter.label;"/>
79 <checkbox checked="true" oncommand="changeFilter()" id="filterLeaked" label="&nightly.leaks.leakedfilter.label;"/>
80 <checkbox checked="true" oncommand="changeFilter()" id="filterCollected" label="&nightly.leaks.collectedfilter.label;"/>
81 <checkbox checked="true" oncommand="changeFilter()" id="filterIgnored" label="&nightly.leaks.unknownfilter.label;"/>
82 </hbox>
83 <iframe id="logframe" style="border: 1px solid threedshadow" flex="1"/>
84 </tabpanel>
85 </tabpanels>
86 </tabbox>
87 </stack>
88
89 </window>