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

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

Issue 189833008: rebaseline_server: display how long it took to render the list (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: delete comment Created 6 years, 9 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="diff_viewer.js"></script> 9 <script src="diff_viewer.js"></script>
10 <script src="loader.js"></script> 10 <script src="loader.js"></script>
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 </div> 180 </div>
181 181
182 <p> 182 <p>
183 183
184 <table border="0"><tr><td> <!-- table holding results header + results table --> 184 <table border="0"><tr><td> <!-- table holding results header + results table -->
185 <table border="0" width="100%"> <!-- results header --> 185 <table border="0" width="100%"> <!-- results header -->
186 <tr> 186 <tr>
187 <td> 187 <td>
188 Found {{filteredImagePairs.length}} matches; 188 Found {{filteredImagePairs.length}} matches;
189 <span ng-show="filteredImagePairs.length > limitedImagePairs.length" > 189 <span ng-show="filteredImagePairs.length > limitedImagePairs.length" >
190 displaying the first {{limitedImagePairs.length}} 190 displaying the first {{limitedImagePairs.length}}.
191 </span> 191 </span>
192 <span ng-show="filteredImagePairs.length <= limitedImagePairs.length "> 192 <span ng-show="filteredImagePairs.length <= limitedImagePairs.length ">
193 displaying them all 193 displaying them all.
194 </span>
195 <span ng-show="renderEndTime > renderStartTime">
196 Rendered in {{(renderEndTime - renderStartTime).toFixed(0)}} ms.
194 </span> 197 </span>
195 <br> 198 <br>
196 (click on the column header radio buttons to re-sort by that column) 199 (click on the column header radio buttons to re-sort by that column)
197 </td> 200 </td>
198 <td align="right"> 201 <td align="right">
199 <div> 202 <div>
200 all tests shown: 203 all tests shown:
201 <button ng-click="selectAllImagePairs()"> 204 <button ng-click="selectAllImagePairs()">
202 select 205 select
203 </button> 206 </button>
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig htnessStringToHexColor(pixelDiffBgColorBrightness)" 268 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig htnessStringToHexColor(pixelDiffBgColorBrightness)"
266 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD iffBgColorBrightness)" 269 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD iffBgColorBrightness)"
267 title="image background brightness" 270 title="image background brightness"
268 min="0" max="255"/> 271 min="0" max="255"/>
269 </th> 272 </th>
270 <th> 273 <th>
271 <!-- imagepair-selection checkbox column --> 274 <!-- imagepair-selection checkbox column -->
272 </th> 275 </th>
273 </tr> 276 </tr>
274 277
275 <tr ng-repeat="imagePair in limitedImagePairs" ng-controller="ImageContr oller"> 278 <tr ng-repeat="imagePair in limitedImagePairs" ng-controller="ImageContr oller" results-updated-callback-directive>
276 <td> 279 <td>
277 {{imagePair[constants.KEY__EXTRA_COLUMN_VALUES][constants.KEY__EXTRA COLUMN__RESULT_TYPE]}} 280 {{imagePair[constants.KEY__EXTRA_COLUMN_VALUES][constants.KEY__EXTRA COLUMN__RESULT_TYPE]}}
278 <br> 281 <br>
279 <button class="show-only-button" 282 <button class="show-only-button"
280 ng-show="viewingTab == defaultTab" 283 ng-show="viewingTab == defaultTab"
281 ng-click="showOnlyResultType(imagePair[constants.KEY__EXTRA_ COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE])" 284 ng-click="showOnlyResultType(imagePair[constants.KEY__EXTRA_ COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE])"
282 title="show only results of type {{imagePair[constants.KEY__ EXTRA_COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE]}}"> 285 title="show only results of type {{imagePair[constants.KEY__ EXTRA_COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE]}}">
283 show only 286 show only
284 </button> 287 </button>
285 <br> 288 <br>
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 ng-click="toggleValueInArray(imagePair.index, selectedImagePa irs)"> 418 ng-click="toggleValueInArray(imagePair.index, selectedImagePa irs)">
416 </tr> 419 </tr>
417 </table> <!-- imagePairs --> 420 </table> <!-- imagePairs -->
418 </td></tr></table> <!-- table holding results header + imagePairs table --> 421 </td></tr></table> <!-- table holding results header + imagePairs table -->
419 422
420 </div><!-- main display area of selected tab --> 423 </div><!-- main display area of selected tab -->
421 </div><!-- everything: hide until data is loaded --> 424 </div><!-- everything: hide until data is loaded -->
422 425
423 </body> 426 </body>
424 </html> 427 </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