Chromium Code Reviews| OLD | NEW |
|---|---|
| 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" /> |
|
chanli
2016/08/01 20:42:04
If I remember right, other html files are using ut
caiw
2016/08/02 00:20:38
Done.
| |
| 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; font-size: 12px; | |
|
chanli
2016/08/01 20:42:04
Place font-size to a separated line
caiw
2016/08/02 00:20:38
Done.
| |
| 8 } | |
| 9 #placeholder { | |
| 10 width: 450px; height: 200px; | |
|
lijeffrey
2016/08/01 20:54:17
nit: Indentation should have 2 spaces
#placeholde
caiw
2016/08/02 00:20:38
Done.
| |
| 11 } | |
| 12 table { | |
| 13 text-align: center; | |
| 14 } | |
| 15 </style> | |
| 16 | |
| 17 <script type="text/javascript" language="javascript" src="https://code.jquery. com/jquery-1.11.3.min.js"></script> | |
| 18 <script type="text/javascript" language="javascript" src="https://cdnjs.cloudf lare.com/ajax/libs/flot/0.8.2/jquery.flot.min.js"></script> | |
| 19 <script type="text/javascript"> | |
| 20 $(document).ready(function () { | |
| 21 $.plot($("#placeholder"), [{{success_rates}}], | |
| 22 { | |
| 23 grid: { | |
| 24 hoverable: true, | |
| 25 borderWidth: 1 | |
| 26 }, | |
| 27 legend: { | |
| 28 labelBoxBorderColor: "none", | |
| 29 position: "right" | |
| 30 } | |
| 31 } | |
| 32 )}); | |
| 33 </script> | |
| 5 </head> | 34 </head> |
| 35 | |
| 6 <body> | 36 <body> |
| 7 <p> Your job has been submitted. </p> | 37 <table> |
| 38 <tr> | |
| 39 <td></td> | |
| 40 <td> | |
| 41 <h1> Regression range of Test </h1> | |
| 42 </td> | |
| 43 <td></td> | |
| 44 </tr> | |
| 45 <tr> | |
| 46 <td> Pass Rate</td> | |
| 47 <td> | |
| 48 <div id="placeholder"></div> | |
| 49 </td> | |
| 50 <td></td> | |
| 51 </tr> | |
| 52 <tr> | |
| 53 <td></td> | |
| 54 <td> Build Number </td> | |
| 55 <td></td> | |
| 56 </tr> | |
| 57 </table> | |
| 8 </body> | 58 </body> |
| 59 </html> | |
| OLD | NEW |