summaryrefslogtreecommitdiffstats
path: root/layout/tools/layout-debug/ui/content/layoutdebug.xhtml
blob: 995a1a4b44e4eac3d2383f059691a2a16353e0a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<?xml version="1.0"?>
<!-- vim: set shiftwidth=2 tabstop=8 expandtab :
   -
   -
   - 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/. -->

<!DOCTYPE window>

<!--

  NOTE:  Because this window is used for layout regression tests, the
  persist attribute should never be used on anything.  Otherwise there
  is a risk of running baseline and verify runs under different
  conditions.

-->

<window
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  xmlns:html="http://www.w3.org/1999/xhtml"
  id="main-window"
  align="stretch"
  data-l10n-id="layoutdebug-main-window"
  windowtype="mozapp:layoutdebug"
  onload="OnLDBLoad();"
  onclose="OnLDBBeforeUnload(event);"
  onunload="OnLDBUnload();"
  width="1024"
  height="768"
  screenX="4"
  screenY="4"
>
  <linkset>
    <html:link rel="stylesheet" href="chrome://global/skin/global.css" />

    <html:link rel="localization" href="layoutdebug/layoutdebug.ftl" />
  </linkset>

  <script src="chrome://layoutdebug/content/layoutdebug.js" />

  <commandset id="tasksCommands">
    <command id="cmd_open" oncommand="openFile();" />
    <command id="cmd_close" oncommand="window.close();" />
    <command id="cmd_focusURLBar" oncommand="focusURLBar();" />
    <command id="cmd_reload" oncommand="gBrowser.reload();" />
    <command id="cmd_dumpContent" oncommand="gDebugger.dumpContent();" />
    <command id="cmd_dumpFrames" oncommand="gDebugger.dumpFrames();" />
    <command
      id="cmd_dumpFramesInCSSPixels"
      oncommand="gDebugger.dumpFramesInCSSPixels();"
    />
    <command id="cmd_dumpTextRuns" oncommand="gDebugger.dumpTextRuns();" />
    <command id="cmd_openDevTools" oncommand="gDebugger.openDevTools();" />
  </commandset>

  <keyset id="tasksKeys">
    <key id="key_open" key="O" modifiers="accel" command="cmd_open" />
    <key id="key_close" key="W" modifiers="accel" command="cmd_close" />
    <key
      id="key_focusURLBar"
      key="L"
      modifiers="accel"
      command="cmd_focusURLBar"
    />
    <key id="key_reload" key="R" modifiers="accel" command="cmd_reload" />
    <key
      id="key_dumpContent"
      key="D"
      modifiers="accel"
      command="cmd_dumpContent"
    />
    <!-- "D" means DOM tree -->
    <key
      id="key_dumpFrames"
      key="F"
      modifiers="accel"
      command="cmd_dumpFrames"
    />
    <key
      id="key_dumpFramesInCSSPixels"
      key="P"
      modifiers="accel"
      command="cmd_dumpFramesInCSSPixels"
    />
    <key
      id="key_dumpTextRuns"
      key="T"
      modifiers="accel"
      command="cmd_dumpTextRuns"
    />
    <key id="key_devTools" keycode="VK_F12" command="cmd_openDevTools" />
  </keyset>

  <vbox flex="1">
    <toolbox>
      <toolbar type="menubar">
        <menubar id="main-menubar">
          <menu id="menu_file" label="File" accesskey="F">
            <menupopup id="menu_FilePopup">
              <menuitem
                id="menu_open"
                label="Open File…"
                accesskey="O"
                key="key_open"
                command="cmd_open"
              />
              <menuitem
                id="menu_close"
                label="Close"
                accesskey="C"
                key="key_close"
                command="cmd_close"
              />
            </menupopup>
          </menu>
          <menu data-l10n-id="layoutdebug-toggle-menu">
            <menupopup>
              <menuitem
                type="checkbox"
                id="menu_paintDumping"
                data-l10n-id="layoutdebug-paint-dumping"
                oncommand="toggle(this);"
              />
              <menuitem
                type="checkbox"
                id="menu_invalidateDumping"
                data-l10n-id="layoutdebug-invalidate-dumping"
                oncommand="toggle(this);"
              />
              <menuseparator />
              <menuitem
                type="checkbox"
                id="menu_eventDumping"
                data-l10n-id="layoutdebug-event-dumping"
                oncommand="toggle(this);"
              />
              <menuitem
                type="checkbox"
                id="menu_motionEventDumping"
                data-l10n-id="layoutdebug-motion-event-dumping"
                oncommand="toggle(this);"
              />
              <menuitem
                type="checkbox"
                id="menu_crossingEventDumping"
                data-l10n-id="layoutdebug-crossing-event-dumping"
                oncommand="toggle(this);"
              />
              <menuseparator />
              <menuitem
                type="checkbox"
                id="menu_reflowCounts"
                data-l10n-id="layoutdebug-reflow-counts"
                oncommand="toggle(this);"
              />
              <menuitem
                type="checkbox"
                id="menu_pagedMode"
                data-l10n-id="layoutdebug-paged-mode"
                oncommand="toggle(this);"
              />
            </menupopup>
          </menu>
          <menu data-l10n-id="layoutdebug-dump-menu">
            <menupopup>
              <menuitem
                id="menu_processIDs"
                label="Process IDs"
                accesskey="P"
                oncommand="gDebugger.dumpProcessIDs();"
              />
              <menuitem
                id="menu_dumpContent"
                data-l10n-id="layoutdebug-dump-content"
                oncommand="gDebugger.dumpContent();"
              />
              <menuitem
                id="menu_dumpFrames"
                data-l10n-id="layoutdebug-dump-frames"
                oncommand="gDebugger.dumpFrames();"
              />
              <menuitem
                id="menu_dumpFramesInCSSPixels"
                data-l10n-id="layoutdebug-dump-frames-in-css-pixels"
                oncommand="gDebugger.dumpFramesInCSSPixels();"
              />
              <menuitem
                id="menu_dumpTextRuns"
                data-l10n-id="layoutdebug-dump-text-runs"
                oncommand="gDebugger.dumpTextRuns();"
              />
              <menuitem
                id="menu_dumpViews"
                data-l10n-id="layoutdebug-dump-views"
                oncommand="gDebugger.dumpViews();"
              />
              <menuitem
                id="menu_dumpCounterManager"
                data-l10n-id="layoutdebug-dump-counter-manager"
                oncommand="gDebugger.dumpCounterManager();"
              />
              <menuseparator />
              <menuitem
                id="menu_dumpStyleSheets"
                data-l10n-id="layoutdebug-dump-style-sheets"
                oncommand="gDebugger.dumpStyleSheets();"
              />
              <menuitem
                id="menu_dumpMatchedRules"
                data-l10n-id="layoutdebug-dump-matched-rules"
                oncommand="gDebugger.dumpMatchedRules();"
              />
              <menuitem
                id="menu_dumpComputedStyles"
                data-l10n-id="layoutdebug-dump-computed-styles"
                oncommand="gDebugger.dumpComputedStyles();"
              />
              <menuseparator />
              <menuitem
                id="menu_dumpReflowStats"
                data-l10n-id="layoutdebug-dump-reflow-stats"
                oncommand="gDebugger.dumpReflowStats();"
              />
            </menupopup>
          </menu>
          <menu id="tasksMenu" />
          <menu id="menu_Help" />
        </menubar>
      </toolbar>

      <toolbar>
        <toolbarbutton
          id="back-button"
          class="toolbarbutton-1"
          data-l10n-id="layoutdebug-back-button"
          oncommand="gBrowser.goBack();"
        />
        <toolbarbutton
          id="forward-button"
          class="toolbarbutton-1"
          data-l10n-id="layoutdebug-forward-button"
          oncommand="gBrowser.goForward();"
        />
        <toolbarbutton
          id="reload-button"
          class="toolbarbutton-1"
          data-l10n-id="layoutdebug-reload-button"
          command="cmd_reload"
        />
        <toolbarbutton
          id="stop-button"
          class="toolbarbutton-1"
          data-l10n-id="layoutdebug-stop-button"
          oncommand="gBrowser.stop();"
        />

        <html:input
          id="urlbar"
          style="flex: 1"
          onkeypress="if (event.keyCode == 13) go();"
        />
      </toolbar>
    </toolbox>

    <browser
      flex="1"
      id="browser"
      type="content"
      primary="true"
      remote="true"
      remoteType="web"
    />

    <hbox>
      <description id="status-text" value="" />
    </hbox>
  </vbox>
</window>