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

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

Issue 2428543003: [Findit] Fixing UI regression when displaying suspected flake build number in analysis result (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | 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 <meta charset="UTF-8"> 3 <meta charset="UTF-8">
4 <title> Find Regression Range for Flaky Test</title> 4 <title> Find Regression Range for Flaky Test</title>
5 <style type="text/css"> 5 <style type="text/css">
6 .container { 6 .container {
7 box-sizing: border-box; 7 box-sizing: border-box;
8 width: 600px; 8 width: 600px;
9 height: 300px; 9 height: 300px;
10 padding: 20px 20px 20px 20px; 10 padding: 20px 20px 20px 20px;
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 Step: {{ step_name }} <br> 199 Step: {{ step_name }} <br>
200 Test: {{ test_name }} <br> 200 Test: {{ test_name }} <br>
201 </div> 201 </div>
202 <br> 202 <br>
203 <div> 203 <div>
204 <b>Analysis Result:</b><br> 204 <b>Analysis Result:</b><br>
205 Status: {{ analysis_status }}<br> 205 Status: {{ analysis_status }}<br>
206 {% if error %} 206 {% if error %}
207 Error info: {{ error }}<br> 207 Error info: {{ error }}<br>
208 {% endif %} 208 {% endif %}
209 {% if suspected_flake_build_number %} 209 {% if suspected_flake.build_number %}
210 Flakiness <b>started</b> in Build: <a href="https://build.chromium.org/p/{{ master_name }}/builders/{{ builder_name }}/builds/{{ suspected_flake_build_numbe r }}" target="_blank" style="color:red;font-weight:bold">{{ suspected_flake_buil d_number }}</a> 210 Flakiness <b>started</b> in Build: <a href="https://build.chromium.org/p/{{ master_name }}/builders/{{ builder_name }}/builds/{{ suspected_flake.build_numbe r }}" target="_blank" style="color:red;font-weight:bold">{{ suspected_flake.buil d_number }}</a>
211 {% endif %} 211 {% endif %}
212 </div> 212 </div>
213 <br> 213 <br>
214 <div> 214 <div>
215 <b>Pass Rate by Build:</b><br> 215 <b>Pass Rate by Build:</b><br>
216 <div class="container"> 216 <div class="container">
217 <div id="flake-data" class="flake-trend"></div> 217 <div id="flake-data" class="flake-trend"></div>
218 </div> 218 </div>
219 </div> 219 </div>
220 <br> 220 <br>
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 <td class="triage-cell">{{ triage_record.triage_result }}</td> 283 <td class="triage-cell">{{ triage_record.triage_result }}</td>
284 <td class="triage-cell">{{ triage_record.version_number }}</td> 284 <td class="triage-cell">{{ triage_record.version_number }}</td>
285 </tr> 285 </tr>
286 {% endfor %} 286 {% endfor %}
287 </tbody> 287 </tbody>
288 </table> 288 </table>
289 </div> 289 </div>
290 {% endif %} 290 {% endif %}
291 </body> 291 </body>
292 </html> 292 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698