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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: perf/dashboard/ui/endure_plotter.html
===================================================================
--- perf/dashboard/ui/endure_plotter.html (revision 298504)
+++ perf/dashboard/ui/endure_plotter.html (working copy)
@@ -1,116 +0,0 @@
-<!--
- Copyright (c) 2012 The Chromium Authors. All rights reserved.
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file.
--->
-
-<!--
- HTML for a general Chrome Endure graph.
--->
-
-<html>
- <head>
- <style>
- body {
- font-family: sans-serif;
- }
- div#output {
- cursor: pointer;
- }
- div#switcher * {
- border: 1px solid black;
- border-radius: 4px 4px 0 0;
- padding-left: 0.5em;
- padding-right: 0.5em;
- }
- div#switcher a {
- background: #ddd;
- cursor: pointer;
- }
- canvas.plot {
- border: 1px solid black;
- }
- div.plot-coordinates {
- font-family: monospace;
- }
- iframe {
- display: none;
- width: 100%;
- height: 100%;
- border: none;
- }
- div.selected {
- border-left: none;
- }
- #explain {
- font-size: 0.75em;
- font-style: italic;
- color: rgb(100,100,100);
- }
- </style>
-
- <script src="js/common.js"></script>
- <script src="js/coordinates.js"></script>
- <script src="js/dom_utils.js"></script>
- <script src="js/graph_utils.js"></script>
- <script src="js/plotter.js"></script>
- <script src="config.js"></script>
-
- <script src="js/endure_plotter.js"></script>
- </head>
-
- <body>
- <div id="header_lookout" align="center">
- <font style='color: #0066FF; font-family: Arial, serif;
- font-size: 12pt; font-weight: bold;'>
- <script>
- document.write("<a target=\"_blank\" href=\"");
- document.write(get_url());
- document.write("\">");
- if ('graph' in params && params.graph != '')
- document.write(escape(params.graph));
- else if ('header' in params && params.header != '')
- document.write(escape(params.header));
- else
- document.write(Config.title);
- document.write("</a>");
- </script>
- </font>
- </div>
-
- <div id="header_text">
- Builds generated by the <i>
- <script>
- document.write(Config.buildslave);
- </script>
- </i> are run through <b>
- <script>
- document.write(Config.title);
- </script>
- </b> and the results of that test are charted here.
- </div>
-
- <div id="explain">
- More information about Chrome Endure can be found here:
- <a href="http://www.chromium.org/developers/testing/pyauto/perf/endure">
- http://www.chromium.org/developers/testing/pyauto/perf/endure</a>
- </div>
-
- <p></p>
-
- <div id="switcher"></div>
- <div id="output"></div> <br>
- <div id="revisions"></div> <br>
- <div id="comparisons"></div> <br>
- <div id="events"></div>
- <script>
- if ('lookout' in params) {
- document.getElementById("switcher").style.display = "none";
- document.getElementById("header_text").style.display = "none";
- document.getElementById("explain").style.display = "none";
- } else {
- document.getElementById("header_lookout").style.display = "none";
- }
- </script>
- </body>
-</html>
« 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