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

Side by Side Diff: chrome/test/functional/perf/endure_graphs/endure_plotter.html

Issue 10879112: Revert 153612 - Add Chrome Endure graph plotting code. (broke Chrome OS) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 3 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 | « no previous file | chrome/test/functional/perf/endure_graphs/endure_plotter.js » ('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/plotter.js"></script>
54 <script src="js/coordinates.js"></script>
55 <script src="config.js"></script>
56
57 <script src="endure_plotter.js"></script>
58 </head>
59
60 <body>
61 <div id="header_lookout" align="center">
62 <font style='color: #0066FF; font-family: Arial, serif;
63 font-size: 12pt; font-weight: bold;'>
64 <script>
65 document.write("<a target=\"_blank\" href=\"");
66 document.write(get_url());
67 document.write("\">");
68 if ('graph' in params && params.graph != '')
69 document.write(escape(params.graph));
70 else
71 document.write(Config.title);
72 document.write("</a>");
73 </script>
74 </font>
75 </div>
76
77 <div id="header_text">
78 Builds generated by the <i>
79 <script>
80 document.write(Config.buildslave);
81 </script>
82 </i> are run through <b>
83 <script>
84 document.write(Config.title);
85 </script>
86 </b> and the results of that test are charted here.
87 </div>
88
89 <div id="explain">
90 More information about Chrome Endure can be found here:
91 <a href="http://go/endure">go/endure</a>
92 </div>
93
94 <p></p>
95
96 <div id="switcher"></div>
97 <div id="output"></div> <br>
98 <div id="revisions"></div> <br>
99 <div id="comparisons"></div> <br>
100 <div id="events"></div>
101 <script>
102 if ('lookout' in params) {
103 document.getElementById("switcher").style.display = "none";
104 document.getElementById("header_text").style.display = "none";
105 document.getElementById("explain").style.display = "none";
106 } else {
107 document.getElementById("header_lookout").style.display = "none";
108 }
109 </script>
110 </body>
111 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/test/functional/perf/endure_graphs/endure_plotter.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698