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

Side by Side Diff: cluster_telemetry/telemetry_master_scripts/html-templates/single_file_details.html

Issue 330943002: remove all references to weightedDiffMeasure from cluster_telemetry code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Created 6 years, 6 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 <html ng-app="diff_viewer"> 1 <html ng-app="diff_viewer">
2 <head> 2 <head>
3 <title>Image comparision failures for {{ slave_info.slave_name }}</title> 3 <title>Image comparision failures for {{ slave_info.slave_name }}</title>
4 <script type="text/javascript" src="https://storage.cloud.google.com/chromiu m-skia-gm/telemetry/hosted-files/angular.min.js"></script> 4 <script type="text/javascript" src="https://storage.cloud.google.com/chromiu m-skia-gm/telemetry/hosted-files/angular.min.js"></script>
5 <script type="text/javascript" src="https://storage.cloud.google.com/chromiu m-skia-gm/telemetry/hosted-files/diff_viewer.js"></script> 5 <script type="text/javascript" src="https://storage.cloud.google.com/chromiu m-skia-gm/telemetry/hosted-files/diff_viewer.js"></script>
6 </head> 6 </head>
7 7
8 <body> 8 <body>
9 <h2>Image comparision failures for {{ slave_info.slave_name }}</h2> 9 <h2>Image comparision failures for {{ slave_info.slave_name }}</h2>
10 <a href='{{ absolute_url }}list_of_all_files.html'>Back</a> 10 <a href='{{ absolute_url }}list_of_all_files.html'>Back</a>
(...skipping 18 matching lines...) Expand all
29 </td> 29 </td>
30 <td> 30 <td>
31 <a href='{{ gs_http_files_location_nopatch }}/{{ file_info.file_name }}' target="_blank">View Image</a> 31 <a href='{{ gs_http_files_location_nopatch }}/{{ file_info.file_name }}' target="_blank">View Image</a>
32 <br/> 32 <br/>
33 <img-compare type="baseline" 33 <img-compare type="baseline"
34 name="baseline" 34 name="baseline"
35 src="{{ gs_http_files_location_nopatch }}/{{ file_info. file_name }}" 35 src="{{ gs_http_files_location_nopatch }}/{{ file_info. file_name }}"
36 class="gm-image left-image" /> 36 class="gm-image left-image" />
37 </td> 37 </td>
38 <td> 38 <td>
39 <a id='compare_value'>{{ file_info.perceptual_diff }}</a>% (perceptu al diff)
40 <a href='{{ gs_http_files_location_withpatch }}/{{ file_info.file_na me }}' target="_blank">View Image</a> 39 <a href='{{ gs_http_files_location_withpatch }}/{{ file_info.file_na me }}' target="_blank">View Image</a>
41 <br/> 40 <br/>
42 <img-compare type="test" 41 <img-compare type="test"
43 name="test" 42 name="test"
44 src="{{ gs_http_files_location_withpatch }}/{{ file_inf o.file_name }}" 43 src="{{ gs_http_files_location_withpatch }}/{{ file_inf o.file_name }}"
45 class="gm-image right-image" /> 44 class="gm-image right-image" />
46 </td> 45 </td>
47 <td> 46 <td>
48 <a id='compare_value'>{{ file_info.percent_pixels_differing }}</a>% ({{ file_info.num_pixels_differing }}) 47 <a id='compare_value'>{{ file_info.percent_pixels_differing }}</a>% ({{ file_info.num_pixels_differing }})
49 <a href='{{ gs_http_files_location_whitediffs }}/{{ file_info.diff_f ile_name }}' target="_blank">View Image</a> 48 <a href='{{ gs_http_files_location_whitediffs }}/{{ file_info.diff_f ile_name }}' target="_blank">View Image</a>
50 <br/> 49 <br/>
51 <img-compare type="differingPixelsInWhite" 50 <img-compare type="differingPixelsInWhite"
52 class="left-image" 51 class="left-image"
53 src="{{ gs_http_files_location_whitediffs }}/{{ file_in fo.diff_file_name }}" /> 52 src="{{ gs_http_files_location_whitediffs }}/{{ file_in fo.diff_file_name }}" />
54 </td> 53 </td>
55 <td> 54 <td>
56 <a id='compare_value'>{{ file_info.weighted_diff_measure }}</a>% {{ file_info.max_diff_per_channel }} 55 <a id='compare_value'>{{ file_info.perceptual_diff }}</a>% (perceptu al diff) | {{ file_info.max_diff_per_channel }}
epoger 2014/06/13 21:16:57 Again, guessing at the best arrangement here. Of
57 <a href='{{ gs_http_files_location_diffs }}/{{ file_info.diff_file_n ame }}' target="_blank">View Image</a> 56 <a href='{{ gs_http_files_location_diffs }}/{{ file_info.diff_file_n ame }}' target="_blank">View Image</a>
58 <br/> 57 <br/>
59 <img-compare type="differencePerPixel" 58 <img-compare type="differencePerPixel"
60 class="left-image" 59 class="left-image"
61 src="{{ gs_http_files_location_diffs }}/{{ file_info.di ff_file_name }}" 60 src="{{ gs_http_files_location_diffs }}/{{ file_info.di ff_file_name }}"
62 ng-mousedown="MagnifyDraw($event, true)" 61 ng-mousedown="MagnifyDraw($event, true)"
63 ng-mousemove="MagnifyDraw($event, false)" 62 ng-mousemove="MagnifyDraw($event, false)"
64 ng-mouseup="MagnifyEnd($event)" 63 ng-mouseup="MagnifyEnd($event)"
65 ng-mouseleave="MagnifyEnd($event)" /> 64 ng-mouseleave="MagnifyEnd($event)" />
66 </td> 65 </td>
67 </tr> 66 </tr>
68 </tbody> 67 </tbody>
69 </table> 68 </table>
70 </body> 69 </body>
71 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698