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

Side by Side Diff: appengine/findit/templates/flake/result.html

Issue 2131473003: UI for the regression range test. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: dashboard and graphs for finding regression range Created 4 years, 4 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
« no previous file with comments | « appengine/findit/templates/flake/dashboard.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <title>Find Regression Range</title> 3 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
4 <meta charset="utf-8"> 4 <title> Find Regression Range</title>
5
6 <!-- lifted code from http://stackoverflow.com/questions/5563270/axis-label-in-f lot -->
7
8 <style type="text/css">
9 body { font-family: Verdana, Arial, sans-serif; font-size: 12px; }
10 #placeholder { width: 450px; height: 200px; }
11 </style>
12
13 <script type="text/javascript" language="javascript" src="https://code.jquery.co m/jquery-1.11.3.min.js"></script>
14 <script type="text/javascript" language="javascript" src="https://cdnjs.cloudfla re.com/ajax/libs/flot/0.8.2/jquery.flot.min.js"></script>
15 <script type="text/javascript">
16
17 $(document).ready(function () {
18
19 $.plot($("#placeholder"), [{{success_rates}}],
20 {
21 grid: {
22 hoverable: true,
23 borderWidth: 1
24 },
25 legend: {
26 labelBoxBorderColor: "none",
27 position: "right"
28 }
29 }
30 )});
31 </script>
5 </head> 32 </head>
33
34
6 <body> 35 <body>
7 <p> Your job has been submitted. </p> 36 <table style="text-align:center">
37 <tr>
38 <td></td>
39 <td> <h1> Regression range of Test </h1> </td>
40 <td></td>
41 </tr>
42
43 <tr>
44 <td> Pass Rate</td>
45 <td> <div id="placeholder"></div> </td>
46 <td></td>
47 </tr>
48
49 <tr>
50 <td></td>
51 <td> Build Number </td>
52 <td></td>
53 </tr>
54
55
56 </table>
8 </body> 57 </body>
58 </html>
OLDNEW
« no previous file with comments | « appengine/findit/templates/flake/dashboard.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698