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

Side by Side Diff: gm/rebaseline_server/static/live-view.html

Issue 451053004: change setA/setB labels if viewing actuals vs expectations (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add hover-notes to setA and setB column headers Created 6 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 2
3 <html ng-app="Loader" ng-controller="Loader.Controller"> 3 <html ng-app="Loader" ng-controller="Loader.Controller">
4 4
5 <head> 5 <head>
6 <title ng-bind="windowTitle"></title> 6 <title ng-bind="windowTitle"></title>
7 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></scr ipt> 7 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></scr ipt>
8 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.20/angular.js "></script> 8 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.20/angular.js "></script>
9 <script src="constants.js"></script> 9 <script src="constants.js"></script>
10 <script src="live-loader.js"></script> 10 <script src="live-loader.js"></script>
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 href="" 260 href=""
261 class="sortable-header"> 261 class="sortable-header">
262 bugs 262 bugs
263 </a> 263 </a>
264 bugs 264 bugs
265 </th> 265 </th>
266 <th width="{{imageSize}}"> 266 <th width="{{imageSize}}">
267 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_A_URL)" 267 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_A_URL)"
268 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ A_URL)" 268 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ A_URL)"
269 href="" 269 href=""
270 title="setA: '{{setASection}}' within {{setADir}}"
270 class="sortable-header"> 271 class="sortable-header">
271 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_A][constants .KEY__IMAGESETS__FIELD__DESCRIPTION]}} 272 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_A][constants .KEY__IMAGESETS__FIELD__DESCRIPTION]}}
272 </a> 273 </a>
273 </th> 274 </th>
274 <th width="{{imageSize}}"> 275 <th width="{{imageSize}}">
275 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_B_URL)" 276 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_B_URL)"
276 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ B_URL)" 277 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ B_URL)"
277 href="" 278 href=""
279 title="setB: '{{setBSection}}' within {{setBDir}}"
278 class="sortable-header"> 280 class="sortable-header">
279 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_B][constants. KEY__IMAGESETS__FIELD__DESCRIPTION]}} 281 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_B][constants. KEY__IMAGESETS__FIELD__DESCRIPTION]}}
280 </a> 282 </a>
281 </th> 283 </th>
282 <th width="{{imageSize}}"> 284 <th width="{{imageSize}}">
283 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__DIFFERENCES __PERCENT_DIFF_PIXELS)" 285 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__DIFFERENCES __PERCENT_DIFF_PIXELS)"
284 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCES, c onstants.KEY__DIFFERENCES__PERCENT_DIFF_PIXELS)" 286 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCES, c onstants.KEY__DIFFERENCES__PERCENT_DIFF_PIXELS)"
285 href="" 287 href=""
286 class="sortable-header"> 288 class="sortable-header">
287 differing pixels in white 289 differing pixels in white
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])"> 417 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])">
416 </tr> 418 </tr>
417 </table> <!-- imagePairs --> 419 </table> <!-- imagePairs -->
418 </td></tr></table> <!-- table holding results header + imagePairs table --> 420 </td></tr></table> <!-- table holding results header + imagePairs table -->
419 421
420 </div><!-- main display area of selected tab --> 422 </div><!-- main display area of selected tab -->
421 </div><!-- everything: hide until readyToDisplay --> 423 </div><!-- everything: hide until readyToDisplay -->
422 424
423 </body> 425 </body>
424 </html> 426 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698