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

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

Issue 334533003: rebaseline_server: delete no-longer-used weightedDiffMeasure (Closed) Base URL: https://skia.googlesource.com/skia.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 <!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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 <input type="radio" 273 <input type="radio"
274 name="sortColumnRadio" 274 name="sortColumnRadio"
275 value="percentDifferingPixels" 275 value="percentDifferingPixels"
276 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCES__PER CENT_DIFF_PIXELS)" 276 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCES__PER CENT_DIFF_PIXELS)"
277 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCE S, constants.KEY__DIFFERENCES__PERCENT_DIFF_PIXELS)"> 277 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCE S, constants.KEY__DIFFERENCES__PERCENT_DIFF_PIXELS)">
278 differing pixels in white 278 differing pixels in white
279 </th> 279 </th>
280 <th width="{{imageSize}}"> 280 <th width="{{imageSize}}">
281 <input type="radio" 281 <input type="radio"
282 name="sortColumnRadio" 282 name="sortColumnRadio"
283 value="weightedDiffMeasure" 283 value="perceptualDiff"
epoger 2014/06/12 03:35:28 This field isn't really used for anything anyway.
284 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCES__PER CEPTUAL_DIFF)" 284 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCES__PER CEPTUAL_DIFF)"
285 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCE S, constants.KEY__DIFFERENCES__PERCEPTUAL_DIFF)"> 285 ng-click="sortResultsBy(constants.KEY__IMAGEPAIRS__DIFFERENCE S, constants.KEY__DIFFERENCES__PERCEPTUAL_DIFF)">
286 perceptual difference 286 perceptual difference
287 <br> 287 <br>
288 <input type="range" ng-model="pixelDiffBgColorBrightness" 288 <input type="range" ng-model="pixelDiffBgColorBrightness"
289 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig htnessStringToHexColor(pixelDiffBgColorBrightness)" 289 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig htnessStringToHexColor(pixelDiffBgColorBrightness)"
290 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD iffBgColorBrightness)" 290 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD iffBgColorBrightness)"
291 title="image background brightness" 291 title="image background brightness"
292 min="0" max="255"/> 292 min="0" max="255"/>
293 </th> 293 </th>
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])"> 438 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])">
439 </tr> 439 </tr>
440 </table> <!-- imagePairs --> 440 </table> <!-- imagePairs -->
441 </td></tr></table> <!-- table holding results header + imagePairs table --> 441 </td></tr></table> <!-- table holding results header + imagePairs table -->
442 442
443 </div><!-- main display area of selected tab --> 443 </div><!-- main display area of selected tab -->
444 </div><!-- everything: hide until data is loaded --> 444 </div><!-- everything: hide until data is loaded -->
445 445
446 </body> 446 </body>
447 </html> 447 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698