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

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

Issue 2243673002: [Findit] Added algorithm to analysis (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: addressed comments, implemented algorithm to get it to one CL, made some UI changes. Unfortunately… 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 <meta charset="UTF-8"> 3 <meta charset="UTF-8">
4 <title> Find Regression Range</title> 4 <title> Find Regression Range</title>
5 <style type="text/css"> 5 <style type="text/css">
6 body { 6 body {
7 font-family: Verdana, Arial, sans-serif; 7 font-family: Verdana, Arial, sans-serif;
8 font-size: 12px; 8 font-size: 12px;
9 } 9 }
10 #placeholder { 10 #placeholder {
(...skipping 30 matching lines...) Expand all
41 <td> 41 <td>
42 <h1>Regression range of Test</h1> 42 <h1>Regression range of Test</h1>
43 </td> 43 </td>
44 <td></td> 44 <td></td>
45 </tr> 45 </tr>
46 <tr> 46 <tr>
47 <td>Pass Rate</td> 47 <td>Pass Rate</td>
48 <td> 48 <td>
49 <div id="placeholder"></div> 49 <div id="placeholder"></div>
50 </td> 50 </td>
51 <td></td> 51 <td>Status of Analysis: {{analysis_status}}
stgao 2016/08/17 19:16:45 How about putting these at the top of the page abo
caiw 2016/08/17 21:30:31 Done.
52 {% if suspected_flake_build_number %}
53 <br>
54 Suspected Build Number of Culprit: {{suspected_flake_build_number}}
55 {% endif %}
56 </td>
52 </tr> 57 </tr>
53 <tr> 58 <tr>
54 <td></td> 59 <td></td>
55 <td>Build Number</td> 60 <td>Build Number</td>
56 <td></td> 61 <td></td>
57 </tr> 62 </tr>
58 </table> 63 </table>
59 </body> 64 </body>
60 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698