Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: perf/dashboard/ui/endure_plotter.html

Issue 1654813003: Remove old dead perf dashboard pages and js (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « perf/dashboard/ui/endure_js/plotter.js ('k') | perf/dashboard/ui/generic_plotter.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6
7 <!--
8 HTML for a general Chrome Endure graph.
9 -->
10
11 <html>
12 <head>
13 <style>
14 body {
15 font-family: sans-serif;
16 }
17 div#output {
18 cursor: pointer;
19 }
20 div#switcher * {
21 border: 1px solid black;
22 border-radius: 4px 4px 0 0;
23 padding-left: 0.5em;
24 padding-right: 0.5em;
25 }
26 div#switcher a {
27 background: #ddd;
28 cursor: pointer;
29 }
30 canvas.plot {
31 border: 1px solid black;
32 }
33 div.plot-coordinates {
34 font-family: monospace;
35 }
36 iframe {
37 display: none;
38 width: 100%;
39 height: 100%;
40 border: none;
41 }
42 div.selected {
43 border-left: none;
44 }
45 #explain {
46 font-size: 0.75em;
47 font-style: italic;
48 color: rgb(100,100,100);
49 }
50 </style>
51
52 <script src="js/common.js"></script>
53 <script src="js/coordinates.js"></script>
54 <script src="js/dom_utils.js"></script>
55 <script src="js/graph_utils.js"></script>
56 <script src="js/plotter.js"></script>
57 <script src="config.js"></script>
58
59 <script src="js/endure_plotter.js"></script>
60 </head>
61
62 <body>
63 <div id="header_lookout" align="center">
64 <font style='color: #0066FF; font-family: Arial, serif;
65 font-size: 12pt; font-weight: bold;'>
66 <script>
67 document.write("<a target=\"_blank\" href=\"");
68 document.write(get_url());
69 document.write("\">");
70 if ('graph' in params && params.graph != '')
71 document.write(escape(params.graph));
72 else if ('header' in params && params.header != '')
73 document.write(escape(params.header));
74 else
75 document.write(Config.title);
76 document.write("</a>");
77 </script>
78 </font>
79 </div>
80
81 <div id="header_text">
82 Builds generated by the <i>
83 <script>
84 document.write(Config.buildslave);
85 </script>
86 </i> are run through <b>
87 <script>
88 document.write(Config.title);
89 </script>
90 </b> and the results of that test are charted here.
91 </div>
92
93 <div id="explain">
94 More information about Chrome Endure can be found here:
95 <a href="http://www.chromium.org/developers/testing/pyauto/perf/endure">
96 http://www.chromium.org/developers/testing/pyauto/perf/endure</a>
97 </div>
98
99 <p></p>
100
101 <div id="switcher"></div>
102 <div id="output"></div> <br>
103 <div id="revisions"></div> <br>
104 <div id="comparisons"></div> <br>
105 <div id="events"></div>
106 <script>
107 if ('lookout' in params) {
108 document.getElementById("switcher").style.display = "none";
109 document.getElementById("header_text").style.display = "none";
110 document.getElementById("explain").style.display = "none";
111 } else {
112 document.getElementById("header_lookout").style.display = "none";
113 }
114 </script>
115 </body>
116 </html>
OLDNEW
« no previous file with comments | « perf/dashboard/ui/endure_js/plotter.js ('k') | perf/dashboard/ui/generic_plotter.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698