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

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

Issue 484763004: rebaseline_server: in Pending Approval tab, change expected/actual labels to old/new (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
« 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 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 class="sortable-header"> 265 class="sortable-header">
266 bugs 266 bugs
267 </a> 267 </a>
268 </th> 268 </th>
269 <th width="{{imageSize}}"> 269 <th width="{{imageSize}}">
270 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_A_URL)" 270 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_A_URL)"
271 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ A_URL)" 271 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ A_URL)"
272 href="" 272 href=""
273 title="setA: '{{header[constants.KEY__HEADER__SET_A_DESCRIPTIONS] [constants.KEY__SET_DESCRIPTIONS__SECTION]}}' within {{header[constants.KEY__HEA DER__SET_A_DESCRIPTIONS][constants.KEY__SET_DESCRIPTIONS__DIR]}}" 273 title="setA: '{{header[constants.KEY__HEADER__SET_A_DESCRIPTIONS] [constants.KEY__SET_DESCRIPTIONS__SECTION]}}' within {{header[constants.KEY__HEA DER__SET_A_DESCRIPTIONS][constants.KEY__SET_DESCRIPTIONS__DIR]}}"
274 class="sortable-header"> 274 class="sortable-header">
275 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_A][constants .KEY__IMAGESETS__FIELD__DESCRIPTION]}} 275 <span ng-show="'Pending Approval' != viewingTab">
276 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_A][constants.KE Y__IMAGESETS__FIELD__DESCRIPTION]}}
277 </span>
278 <span ng-show="'Pending Approval' == viewingTab">
279 old expectations
280 </span>
276 </a> 281 </a>
277 </th> 282 </th>
278 <th width="{{imageSize}}"> 283 <th width="{{imageSize}}">
279 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_B_URL)" 284 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__IMAGEPAIRS_ _IMAGE_B_URL)"
280 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ B_URL)" 285 ng-click="sortResultsBy('none', constants.KEY__IMAGEPAIRS__IMAGE_ B_URL)"
281 href="" 286 href=""
282 title="setB: '{{header[constants.KEY__HEADER__SET_B_DESCRIPTIONS] [constants.KEY__SET_DESCRIPTIONS__SECTION]}}' within {{header[constants.KEY__HEA DER__SET_B_DESCRIPTIONS][constants.KEY__SET_DESCRIPTIONS__DIR]}}" 287 title="setB: '{{header[constants.KEY__HEADER__SET_B_DESCRIPTIONS] [constants.KEY__SET_DESCRIPTIONS__SECTION]}}' within {{header[constants.KEY__HEA DER__SET_B_DESCRIPTIONS][constants.KEY__SET_DESCRIPTIONS__DIR]}}"
283 class="sortable-header"> 288 class="sortable-header">
284 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_B][constants. KEY__IMAGESETS__FIELD__DESCRIPTION]}} 289 <span ng-show="'Pending Approval' != viewingTab">
290 {{imageSets[constants.KEY__IMAGESETS__SET__IMAGE_B][constants.KE Y__IMAGESETS__FIELD__DESCRIPTION]}}
291 </span>
292 <span ng-show="'Pending Approval' == viewingTab">
293 new expectations
294 </span>
285 </a> 295 </a>
286 </th> 296 </th>
287 <th width="{{imageSize}}"> 297 <th width="{{imageSize}}">
288 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__DIFFERENCES __PERCENT_DIFF_PIXELS)" 298 <a ng-class="'sort-' + sortedByColumnsCls(constants.KEY__DIFFERENCES __PERCENT_DIFF_PIXELS)"
289 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCES, c onstants.KEY__DIFFERENCES__PERCENT_DIFF_PIXELS)" 299 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCES, c onstants.KEY__DIFFERENCES__PERCENT_DIFF_PIXELS)"
290 href="" 300 href=""
291 class="sortable-header"> 301 class="sortable-header">
292 differing pixels in white 302 differing pixels in white
293 </a> 303 </a>
294 </th> 304 </th>
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])"> 430 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])">
421 </tr> 431 </tr>
422 </table> <!-- imagePairs --> 432 </table> <!-- imagePairs -->
423 </td></tr></table> <!-- table holding results header + imagePairs table --> 433 </td></tr></table> <!-- table holding results header + imagePairs table -->
424 434
425 </div><!-- main display area of selected tab --> 435 </div><!-- main display area of selected tab -->
426 </div><!-- everything: hide until readyToDisplay --> 436 </div><!-- everything: hide until readyToDisplay -->
427 437
428 </body> 438 </body>
429 </html> 439 </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