mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7a653b042a
--HG-- rename : browser/devtools/shared/test/browser_graphs-07.js => browser/devtools/shared/test/browser_graphs-07a.js
69 lines
2.5 KiB
XML
69 lines
2.5 KiB
XML
<?xml version="1.0"?>
|
|
<!-- 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/. -->
|
|
<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/content/devtools/widgets.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/common.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://browser/skin/devtools/timeline.css" type="text/css"?>
|
|
<!DOCTYPE window [
|
|
<!ENTITY % timelineDTD SYSTEM "chrome://browser/locale/devtools/timeline.dtd">
|
|
%timelineDTD;
|
|
]>
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script src="chrome://browser/content/devtools/theme-switching.js"/>
|
|
<script type="application/javascript" src="timeline.js"/>
|
|
|
|
<vbox class="theme-body" flex="1">
|
|
<toolbar id="timeline-toolbar"
|
|
class="devtools-toolbar">
|
|
<hbox id="recordings-controls"
|
|
class="devtools-toolbarbutton-group"
|
|
align="center">
|
|
<toolbarbutton id="record-button"
|
|
class="devtools-toolbarbutton"
|
|
oncommand="TimelineController.toggleRecording()"
|
|
tooltiptext="&timelineUI.recordButton.tooltip;"/>
|
|
<spacer flex="1"/>
|
|
<label id="record-label"
|
|
value="&timelineUI.recordLabel;"/>
|
|
</hbox>
|
|
</toolbar>
|
|
|
|
<vbox id="timeline-overview"/>
|
|
|
|
<deck id="timeline-pane"
|
|
flex="1">
|
|
<hbox id="empty-notice"
|
|
class="notice-container"
|
|
align="center"
|
|
pack="center"
|
|
flex="1">
|
|
<label value="&timelineUI.emptyNotice1;"/>
|
|
<button id="profiling-notice-button"
|
|
class="devtools-toolbarbutton"
|
|
standalone="true"
|
|
oncommand="TimelineController.toggleRecording()"/>
|
|
<label value="&timelineUI.emptyNotice2;"/>
|
|
</hbox>
|
|
|
|
<hbox id="recording-notice"
|
|
class="notice-container"
|
|
align="center"
|
|
pack="center"
|
|
flex="1">
|
|
<label value="&timelineUI.stopNotice1;"/>
|
|
<button id="profiling-notice-button"
|
|
class="devtools-toolbarbutton"
|
|
standalone="true"
|
|
checked="true"
|
|
oncommand="TimelineController.toggleRecording()"/>
|
|
<label value="&timelineUI.stopNotice2;"/>
|
|
</hbox>
|
|
|
|
<vbox id="timeline-waterfall" flex="1"/>
|
|
</deck>
|
|
</vbox>
|
|
</window>
|