mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
b9843e0358
- Bug 1167459 - Skip rendering function name nodes if there's no name available (e.g. for C++ pseudoframes), r=jsantell (4a69ed224)
- missing bits Bug 1102219 - Part 4: Replace String.prototype.contains with `String.prototype.includes` in chrome code. r=till (73cd2d2b1)
- Bug 1165045 - Don't create nodes with empty text in the call tree, r=jsantell (b013aa82d)
- Bug 1166122 - Fix regression in the call tree caused by bug 1165045, r=jsantell (ee3f16901)
- Bug 1167975 - CallView._displaySelf sets this.document just because other functions use it; it should pass it as an argument instead, r=jsantell (5ef560c4f)
- Bug 1122662 - Resize graphs when window resizes;r=vporof (25c108e4e)
- Bug 1164784 - Eliminate CSS duplication with perf tool record button r=jsantell (43c9bb999)
- Bug 1150761 - Rename the performance tool's details view names to better describe the data visualizations. r=vp (04ceb6a37)
- Bug 1144424 - Rename '{self,total} allocations' to '{self,total} sampled allocations' in the performance tool. r=jsantell (ae79ad54f)
- Bug 1069910 - Add tooltips explaining what each column in the profiler's tree view represents; r=jsantell (8756f88b6)
- Bug 1107849 - Define a min/max width for the performance panel sidebar. r=vporof (e1769e831)
- Bug 11663354 - A locked recording button should appear disabled in the performance tool. r=vp (4a359d39e)
- Bug 1023546 - DevTools - Support HDPI resolutions for Windows. r=bgrins (ef1a3ecb8)
- Bug 1168125 - Cleanup performance xul and css, r=jsantell (8ec794e46)
- Bug 1168125 - Replace the waterfall view with a tree, r=jsantell (ea76514fe)
- Bug 1168125 - Add marker folding logic, r=jsantell (1d3748d2a)
- Bug 862341 Part 1: Move the network request storage from the console frontend to the console client so the netmonitor can reuse it. r=vporof (d29fb2b73)
- remove gre from resource path (126b00df1)
- Bug 943306 - Allow persisting console input history between sessions;r=past (146ebb486)
- Bug 1134845 - Add clearHistory jsterm helper to remove persisted console input history. r=past (22237e95b)
- Bug 1143497 - Offer a way to extend WebConsole commands. r=bgrins (84e2d2957)
- Bug 1125205 - Display console API messages from shared or service workers to the web console, r=past (b4b701a2c)
- Bug 1169342 - Remove nsIDOMDeviceStorage. Cleanup nsDOMDeviceStorage event wrappers. r=dhylands (41338e16f)
- Bug 1151610 - Manage the case where two extensions fight over the same command. r=bgrins (63f9d2064)
- Bug 862341 Part 2: Display cached network requests in the web console. r=vporof (83c0e7263)
- Bug 1144211 - Improve code coverage of camera mochitests. r=mikeh (ba9f3de89)
- Bug 1152500 - Fix how stop recording may be handled out-of-order. r=dhylands (d8bdd379c)
- Bug 862341 Part 3: Display cached network requests in the network panel. r=vporof (a1a6f151d)
- Bug 862341 Part 4: Start recording network requests when the toolbox opens. r=vporof (7a2bdf847)
- Bug 1151499 - Correct the FM playable state. r=baku (8af26fff2)
- Bug 1180347 - Split media.useAudioChannelService to support turning the service on without turning the Firefox OS specific APIs on; r=baku (3fa29291a)
- Bug 862341 Part 5: Tests. r=vporof (82fb944c6)
212 lines
11 KiB
XML
212 lines
11 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- 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 [
|
|
<!ENTITY % webConsoleDTD SYSTEM "chrome://global/locale/devtools/webConsole.dtd">
|
|
%webConsoleDTD;
|
|
]>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://global/skin/devtools/common.css"
|
|
type="text/css"?>
|
|
<?xml-stylesheet href="chrome://global/skin/devtools/widgets.css"
|
|
type="text/css"?>
|
|
<?xml-stylesheet href="chrome://global/skin/devtools/webconsole.css"
|
|
type="text/css"?>
|
|
<?xul-overlay href="chrome://global/content/editMenuOverlay.xul"?>
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="devtools-webconsole"
|
|
macanimationtype="document"
|
|
fullscreenbutton="true"
|
|
title="&window.title;"
|
|
browserConsoleTitle="&browserConsole.title;"
|
|
windowtype="devtools:webconsole"
|
|
width="900" height="350"
|
|
persist="screenX screenY width height sizemode">
|
|
|
|
<script type="application/javascript;version=1.8"
|
|
src="chrome://global/content/devtools/theme-switching.js"/>
|
|
<script type="text/javascript" src="chrome://global/content/globalOverlay.js"/>
|
|
<script type="text/javascript"><![CDATA[
|
|
function goUpdateConsoleCommands() {
|
|
goUpdateCommand("consoleCmd_openURL");
|
|
goUpdateCommand("consoleCmd_copyURL");
|
|
}
|
|
// ]]></script>
|
|
|
|
<commandset id="editMenuCommands"/>
|
|
|
|
<commandset id="consoleCommands"
|
|
commandupdater="true"
|
|
events="focus,select"
|
|
oncommandupdate="goUpdateConsoleCommands();">
|
|
<command id="consoleCmd_openURL"
|
|
oncommand="goDoCommand('consoleCmd_openURL');"/>
|
|
<command id="consoleCmd_copyURL"
|
|
oncommand="goDoCommand('consoleCmd_copyURL');"/>
|
|
<command id="consoleCmd_clearOutput"
|
|
oncommand="goDoCommand('consoleCmd_clearOutput');"/>
|
|
<command id="cmd_find" oncommand="goDoCommand('cmd_find');"/>
|
|
<command id="cmd_fullZoomEnlarge" oncommand="goDoCommand('cmd_fontSizeEnlarge');" disabled="true"/>
|
|
<command id="cmd_fullZoomReduce" oncommand="goDoCommand('cmd_fontSizeReduce');" disabled="true"/>
|
|
<command id="cmd_fullZoomReset" oncommand="goDoCommand('cmd_fontSizeReset');" disabled="true"/>
|
|
<command id="cmd_close" oncommand="goDoCommand('cmd_close');" disabled="true"/>
|
|
</commandset>
|
|
<keyset id="consoleKeys">
|
|
<key id="key_fullZoomReduce" key="&fullZoomReduceCmd.commandkey;" command="cmd_fullZoomReduce" modifiers="accel"/>
|
|
<key key="&fullZoomReduceCmd.commandkey2;" command="cmd_fullZoomReduce" modifiers="accel"/>
|
|
<key id="key_fullZoomEnlarge" key="&fullZoomEnlargeCmd.commandkey;" command="cmd_fullZoomEnlarge" modifiers="accel"/>
|
|
<key key="&fullZoomEnlargeCmd.commandkey2;" command="cmd_fullZoomEnlarge" modifiers="accel"/>
|
|
<key key="&fullZoomEnlargeCmd.commandkey3;" command="cmd_fullZoomEnlarge" modifiers="accel"/>
|
|
<key id="key_fullZoomReset" key="&fullZoomResetCmd.commandkey;" command="cmd_fullZoomReset" modifiers="accel"/>
|
|
<key key="&fullZoomResetCmd.commandkey2;" command="cmd_fullZoomReset" modifiers="accel"/>
|
|
<key key="&findCmd.key;" command="cmd_find" modifiers="accel"/>
|
|
<key key="&closeCmd.key;" command="cmd_close" modifiers="accel"/>
|
|
<key key="&clearOutputCtrl.key;" command="consoleCmd_clearOutput" modifiers="control"/>
|
|
</keyset>
|
|
<keyset id="editMenuKeys"/>
|
|
|
|
<popupset id="mainPopupSet">
|
|
<menupopup id="output-contextmenu" onpopupshowing="goUpdateGlobalEditMenuItems()">
|
|
<menuitem id="saveBodiesContextMenu" type="checkbox" label="&saveBodies.label;"
|
|
accesskey="&saveBodies.accesskey;"/>
|
|
<menuitem id="menu_openURL" label="&openURL.label;"
|
|
accesskey="&openURL.accesskey;" command="consoleCmd_openURL"
|
|
selection="network" selectionType="single"/>
|
|
<menuitem id="menu_copyURL" label="©URLCmd.label;"
|
|
accesskey="©URLCmd.accesskey;" command="consoleCmd_copyURL"
|
|
selection="network" selectionType="single"/>
|
|
<menuitem id="menu_openInVarView" label="&openInVarViewCmd.label;"
|
|
accesskey="&openInVarViewCmd.accesskey;" disabled="true"/>
|
|
<menuitem id="cMenu_copy"/>
|
|
<menuitem id="cMenu_selectAll"/>
|
|
</menupopup>
|
|
</popupset>
|
|
|
|
<tooltip id="aHTMLTooltip" page="true"/>
|
|
|
|
<box class="hud-outer-wrapper devtools-responsive-container theme-body" flex="1">
|
|
<vbox class="hud-console-wrapper devtools-main-content" flex="1">
|
|
<toolbar class="hud-console-filter-toolbar devtools-toolbar" mode="full">
|
|
<hbox class="devtools-toolbarbutton-group">
|
|
<toolbarbutton label="&btnPageNet.label;" type="menu-button"
|
|
category="net" class="devtools-toolbarbutton webconsole-filter-button"
|
|
tooltiptext="&btnPageNet.tooltip;"
|
|
accesskeyMacOSX="&btnPageNet.accesskeyMacOSX;"
|
|
accesskey="&btnPageNet.accesskey;"
|
|
tabindex="3">
|
|
<menupopup id="net-contextmenu">
|
|
<menuitem label="&btnConsoleErrors;" type="checkbox" autocheck="false"
|
|
prefKey="network"/>
|
|
<menuitem label="&btnConsoleWarnings;" type="checkbox" autocheck="false"
|
|
prefKey="netwarn"/>
|
|
<menuitem label="&btnConsoleXhr;" type="checkbox" autocheck="false"
|
|
prefKey="netxhr"/>
|
|
<menuitem label="&btnConsoleLog;" type="checkbox" autocheck="false"
|
|
prefKey="networkinfo"/>
|
|
<menuseparator id="saveBodiesSeparator" />
|
|
<menuitem id="saveBodies" type="checkbox" label="&saveBodies.label;"
|
|
accesskey="&saveBodies.accesskey;"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
<toolbarbutton label="&btnPageCSS.label;" type="menu-button"
|
|
category="css" class="devtools-toolbarbutton webconsole-filter-button"
|
|
tooltiptext="&btnPageCSS.tooltip2;"
|
|
accesskey="&btnPageCSS.accesskey;"
|
|
tabindex="4">
|
|
<menupopup id="css-contextmenu">
|
|
<menuitem label="&btnConsoleErrors;" type="checkbox" autocheck="false"
|
|
prefKey="csserror"/>
|
|
<menuitem label="&btnConsoleWarnings;" type="checkbox"
|
|
autocheck="false" prefKey="cssparser"/>
|
|
<menuitem label="&btnConsoleReflows;" type="checkbox"
|
|
autocheck="false" prefKey="csslog"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
<toolbarbutton label="&btnPageJS.label;" type="menu-button"
|
|
category="js" class="devtools-toolbarbutton webconsole-filter-button"
|
|
tooltiptext="&btnPageJS.tooltip;"
|
|
accesskey="&btnPageJS.accesskey;"
|
|
tabindex="5">
|
|
<menupopup id="js-contextmenu">
|
|
<menuitem label="&btnConsoleErrors;" type="checkbox"
|
|
autocheck="false" prefKey="exception"/>
|
|
<menuitem label="&btnConsoleWarnings;" type="checkbox"
|
|
autocheck="false" prefKey="jswarn"/>
|
|
<menuitem label="&btnConsoleLog;" type="checkbox"
|
|
autocheck="false" prefKey="jslog"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
<toolbarbutton label="&btnPageSecurity.label;" type="menu-button"
|
|
category="security" class="devtools-toolbarbutton webconsole-filter-button"
|
|
tooltiptext="&btnPageSecurity.tooltip;"
|
|
accesskey="&btnPageSecurity.accesskey;"
|
|
tabindex="6">
|
|
<menupopup id="security-contextmenu">
|
|
<menuitem label="&btnConsoleErrors;" type="checkbox"
|
|
autocheck="false" prefKey="secerror"/>
|
|
<menuitem label="&btnConsoleWarnings;" type="checkbox"
|
|
autocheck="false" prefKey="secwarn"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
<toolbarbutton label="&btnPageLogging.label;" type="menu-button"
|
|
category="logging" class="devtools-toolbarbutton webconsole-filter-button"
|
|
tooltiptext="&btnPageLogging.tooltip;"
|
|
accesskey="&btnPageLogging.accesskey3;"
|
|
tabindex="7">
|
|
<menupopup id="logging-contextmenu">
|
|
<menuitem label="&btnConsoleErrors;" type="checkbox"
|
|
autocheck="false" prefKey="error"/>
|
|
<menuitem label="&btnConsoleWarnings;" type="checkbox"
|
|
autocheck="false" prefKey="warn"/>
|
|
<menuitem label="&btnConsoleInfo;" type="checkbox" autocheck="false"
|
|
prefKey="info"/>
|
|
<menuitem label="&btnConsoleLog;" type="checkbox" autocheck="false"
|
|
prefKey="log"/>
|
|
<menuseparator />
|
|
<menuitem label="&btnConsoleSharedWorkers;" type="checkbox"
|
|
autocheck="false" prefKey="sharedworkers"/>
|
|
<menuitem label="&btnConsoleServiceWorkers;" type="checkbox"
|
|
autocheck="false" prefKey="serviceworkers"/>
|
|
<menuitem label="&btnConsoleWindowlessWorkers;" type="checkbox"
|
|
autocheck="false" prefKey="windowlessworkers"/>
|
|
</menupopup>
|
|
</toolbarbutton>
|
|
</hbox>
|
|
<toolbarbutton class="webconsole-clear-console-button devtools-toolbarbutton"
|
|
label="&btnClear.label;" tooltiptext="&btnClear.tooltip;"
|
|
accesskey="&btnClear.accesskey;"
|
|
tabindex="8"/>
|
|
|
|
<spacer flex="1"/>
|
|
|
|
<textbox class="compact hud-filter-box devtools-searchinput" type="search"
|
|
placeholder="&filterOutput.placeholder;" tabindex="2"/>
|
|
</toolbar>
|
|
|
|
<hbox id="output-wrapper" flex="1" context="output-contextmenu" tooltip="aHTMLTooltip">
|
|
<div xmlns="http://www.w3.org/1999/xhtml" id="output-container"
|
|
tabindex="0" role="document" aria-live="polite" />
|
|
</hbox>
|
|
<notificationbox id="webconsole-notificationbox">
|
|
<hbox class="jsterm-input-container" style="direction:ltr">
|
|
<stack class="jsterm-stack-node" flex="1">
|
|
<textbox class="jsterm-complete-node devtools-monospace"
|
|
multiline="true" rows="1" tabindex="-1"/>
|
|
<textbox class="jsterm-input-node devtools-monospace"
|
|
multiline="true" rows="1" tabindex="0"
|
|
aria-autocomplete="list"/>
|
|
</stack>
|
|
</hbox>
|
|
</notificationbox>
|
|
</vbox>
|
|
|
|
<splitter class="devtools-side-splitter"/>
|
|
|
|
<tabbox id="webconsole-sidebar" class="devtools-sidebar-tabs" hidden="true" width="300">
|
|
<tabs/>
|
|
<tabpanels flex="1"/>
|
|
</tabbox>
|
|
</box>
|
|
</window>
|