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

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

Issue 489183002: rebaseline_server: add download link for SKP diff patchfile (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 | « gm/rebaseline_server/static/live-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="//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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 {{setting}} 196 {{setting}}
197 <input type="text" ng-model="submitAdvancedSettings[setting]"> 197 <input type="text" ng-model="submitAdvancedSettings[setting]">
198 </li> 198 </li>
199 </ul> 199 </ul>
200 </div> 200 </div>
201 <div ng-show="diffResults"> 201 <div ng-show="diffResults">
202 <p> 202 <p>
203 Here is the patch to apply to your local checkout: 203 Here is the patch to apply to your local checkout:
204 <br> 204 <br>
205 <textarea rows="8" cols="50">{{diffResults}}</textarea> 205 <textarea rows="8" cols="50">{{diffResults}}</textarea>
206 <br>
207 <a download="patch.txt" ng-href="{{diffResultsBlobUrl}}">
208 Click here to download that patch as a text file.
209 </a>
206 </div> 210 </div>
207 </div> 211 </div>
208 212
209 <p> 213 <p>
210 214
211 <table border="0"><tr><td> <!-- table holding results header + results table --> 215 <table border="0"><tr><td> <!-- table holding results header + results table -->
212 <table border="0" width="100%"> <!-- results header --> 216 <table border="0" width="100%"> <!-- results header -->
213 <tr> 217 <tr>
214 <td> 218 <td>
215 Found {{filteredImagePairs.length}} matches; 219 Found {{filteredImagePairs.length}} matches;
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])"> 437 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])">
434 </tr> 438 </tr>
435 </table> <!-- imagePairs --> 439 </table> <!-- imagePairs -->
436 </td></tr></table> <!-- table holding results header + imagePairs table --> 440 </td></tr></table> <!-- table holding results header + imagePairs table -->
437 441
438 </div><!-- main display area of selected tab --> 442 </div><!-- main display area of selected tab -->
439 </div><!-- everything: hide until readyToDisplay --> 443 </div><!-- everything: hide until readyToDisplay -->
440 444
441 </body> 445 </body>
442 </html> 446 </html>
OLDNEW
« no previous file with comments | « gm/rebaseline_server/static/live-loader.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698