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

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

Issue 235993002: rebaseline_server: fix sorting by perceptual diff column (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 8 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 | « gm/rebaseline_server/static/loader.js ('k') | 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="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js" ></script> 7 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js" ></script>
8 <script src="constants.js"></script> 8 <script src="constants.js"></script>
9 <script src="loader.js"></script> 9 <script src="loader.js"></script>
10 <link rel="stylesheet" href="view.css"> 10 <link rel="stylesheet" href="view.css">
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 name="sortColumnRadio" 253 name="sortColumnRadio"
254 value="percentDifferingPixels" 254 value="percentDifferingPixels"
255 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_ _PERCENT_DIFF_PIXELS)" 255 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_ _PERCENT_DIFF_PIXELS)"
256 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const ants.KEY__DIFFERENCE_DATA__PERCENT_DIFF_PIXELS)"> 256 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const ants.KEY__DIFFERENCE_DATA__PERCENT_DIFF_PIXELS)">
257 differing pixels in white 257 differing pixels in white
258 </th> 258 </th>
259 <th width="{{imageSize}}"> 259 <th width="{{imageSize}}">
260 <input type="radio" 260 <input type="radio"
261 name="sortColumnRadio" 261 name="sortColumnRadio"
262 value="weightedDiffMeasure" 262 value="weightedDiffMeasure"
263 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_ _WEIGHTED_DIFF)" 263 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_ _PERCEPTUAL_DIFF)"
264 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const ants.KEY__DIFFERENCE_DATA__WEIGHTED_DIFF)"> 264 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const ants.KEY__DIFFERENCE_DATA__PERCEPTUAL_DIFF)">
265 perceptual difference 265 perceptual difference
266 <br> 266 <br>
267 <input type="range" ng-model="pixelDiffBgColorBrightness" 267 <input type="range" ng-model="pixelDiffBgColorBrightness"
268 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig htnessStringToHexColor(pixelDiffBgColorBrightness)" 268 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig htnessStringToHexColor(pixelDiffBgColorBrightness)"
269 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD iffBgColorBrightness)" 269 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD iffBgColorBrightness)"
270 title="image background brightness" 270 title="image background brightness"
271 min="0" max="255"/> 271 min="0" max="255"/>
272 </th> 272 </th>
273 <th> 273 <th>
274 <!-- imagepair-selection checkbox column --> 274 <!-- imagepair-selection checkbox column -->
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 ng-click="toggleValueInArray(imagePair.index, selectedImagePa irs)"> 414 ng-click="toggleValueInArray(imagePair.index, selectedImagePa irs)">
415 </tr> 415 </tr>
416 </table> <!-- imagePairs --> 416 </table> <!-- imagePairs -->
417 </td></tr></table> <!-- table holding results header + imagePairs table --> 417 </td></tr></table> <!-- table holding results header + imagePairs table -->
418 418
419 </div><!-- main display area of selected tab --> 419 </div><!-- main display area of selected tab -->
420 </div><!-- everything: hide until data is loaded --> 420 </div><!-- everything: hide until data is loaded -->
421 421
422 </body> 422 </body>
423 </html> 423 </html>
OLDNEW
« no previous file with comments | « gm/rebaseline_server/static/loader.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698