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

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

Issue 59063005: rebaseline_server was not allowing tests to be marked ignore-failure (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« 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="loader.js"></script> 8 <script src="loader.js"></script>
9 <link rel="stylesheet" href="view.css"> 9 <link rel="stylesheet" href="view.css">
10 </head> 10 </head>
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 <div style="font-size:20px" 153 <div style="font-size:20px"
154 ng-hide="!submitPending"> 154 ng-hide="!submitPending">
155 Submitting, please wait... 155 Submitting, please wait...
156 </div> 156 </div>
157 </div> 157 </div>
158 <div> 158 <div>
159 Advanced settings... 159 Advanced settings...
160 <input type="checkbox" ng-model="showSubmitAdvancedSettings"> 160 <input type="checkbox" ng-model="showSubmitAdvancedSettings">
161 show 161 show
162 <ul ng-hide="!showSubmitAdvancedSettings"> 162 <ul ng-hide="!showSubmitAdvancedSettings">
163 <li ng-repeat="setting in ['reviewed-by-human', 'ignore-failures']"> 163 <li ng-repeat="setting in ['reviewed-by-human', 'ignore-failure']">
164 {{setting}} 164 {{setting}}
165 <input type="checkbox" ng-model="submitAdvancedSettings[setting]"> 165 <input type="checkbox" ng-model="submitAdvancedSettings[setting]">
166 </li> 166 </li>
167 <li ng-repeat="setting in ['bug']"> 167 <li ng-repeat="setting in ['bug']">
168 {{setting}} 168 {{setting}}
169 <input type="text" ng-model="submitAdvancedSettings[setting]"> 169 <input type="text" ng-model="submitAdvancedSettings[setting]">
170 </li> 170 </li>
171 </ul> 171 </ul>
172 </div> 172 </div>
173 </div> 173 </div>
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 <!-- TODO(epoger): Can we get the base URLs (commondatastorage and 303 <!-- TODO(epoger): Can we get the base URLs (commondatastorage and
304 issues list) from 304 issues list) from
305 http://skia.googlecode.com/svn/buildbot/site_config/global_variables.json 305 http://skia.googlecode.com/svn/buildbot/site_config/global_variables.json
306 ? I tried importing the 306 ? I tried importing the
307 http://skia.googlecode.com/svn/buildbot/skia_tools.js script and using 307 http://skia.googlecode.com/svn/buildbot/skia_tools.js script and using
308 that to do so, but I got Access-Control-Allow-Origin errors. 308 that to do so, but I got Access-Control-Allow-Origin errors.
309 --> 309 -->
310 310
311 </body> 311 </body>
312 </html> 312 </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