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

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

Issue 2195473002: [Findit] Dashboards and graph for regression range (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: put dashboard in table 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <head> 2 <head>
3 <title>Find Regression Range</title> 3 <meta charset="UTF-8">
4 <meta charset="utf-8"> 4 <title> Find Regression Range</title>
5 <style type="text/css">
6 body {
7 font-family: Verdana, Arial, sans-serif;
8 font-size: 12px;
9 }
10 #placeholder {
11 width: 450px;
12 height: 200px;
13 }
14 table {
15 text-align: center;
16 }
17 </style>
18 <script type="text/javascript" language="javascript" src="https://code.jquery. com/jquery-1.11.3.min.js"></script>
19 <script type="text/javascript" language="javascript" src="https://cdnjs.cloudf lare.com/ajax/libs/flot/0.8.2/jquery.flot.min.js"></script>
20 <script type="text/javascript">
21 $(document).ready(function () {
22 $.plot($("#placeholder"), [{{success_rates}}],
23 {
24 grid: {
25 hoverable: true,
26 borderWidth: 1
27 },
28 legend: {
29 labelBoxBorderColor: "none",
30 position: "right"
31 }
32 }
33 )});
34 </script>
5 </head> 35 </head>
36
6 <body> 37 <body>
7 <p> Your job has been submitted. </p> 38 <table>
39 <tr>
40 <td></td>
41 <td>
42 <h1> Regression range of Test </h1>
43 </td>
44 <td></td>
45 </tr>
46 <tr>
47 <td> Pass Rate</td>
48 <td>
49 <div id="placeholder"></div>
50 </td>
51 <td></td>
52 </tr>
53 <tr>
54 <td></td>
55 <td> Build Number </td>
lijeffrey 2016/08/02 21:21:52 nit: If it looks ok with out the spaces before/aft
caiw 2016/08/02 21:47:06 Done.
56 <td></td>
57 </tr>
58 </table>
8 </body> 59 </body>
60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698