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

Side by Side Diff: chrome/browser/resources/file_manager/main.html

Issue 10103027: Fixing tab order in open dialogs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 -- Use of this source code is governed by a BSD-style license that can be 4 -- Use of this source code is governed by a BSD-style license that can be
5 -- found in the LICENSE file. 5 -- found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;">
8 <head> 8 <head>
9 <if expr="0"> 9 <if expr="0">
10 <!-- <if ... /if> is removed while flattening HTML. --> 10 <!-- <if ... /if> is removed while flattening HTML. -->
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 </div> 227 </div>
228 <div class='unmounted-panel'></div> 228 <div class='unmounted-panel'></div>
229 </div> 229 </div>
230 </div> 230 </div>
231 </div> 231 </div>
232 <div class=dialog-footer visibleif='this.dialogType_ != "full-page"'> 232 <div class=dialog-footer visibleif='this.dialogType_ != "full-page"'>
233 <div class=filename-label i18n-content=FILENAME_LABEL 233 <div class=filename-label i18n-content=FILENAME_LABEL
234 visibleif='this.dialogType_ == "saveas-file"' 234 visibleif='this.dialogType_ == "saveas-file"'
235 >[FILENAME]</div> 235 >[FILENAME]</div>
236 <input type=text class=filename-input spellcheck=false 236 <input type=text class=filename-input spellcheck=false
237 tabindex=1
238 visibleif='this.dialogType_ == "saveas-file"'> 237 visibleif='this.dialogType_ == "saveas-file"'>
239 <div class=horizontal-spacer></div> 238 <div class=horizontal-spacer></div>
240 <button class=ok disabled tabindex=2>[OK]</button> 239 <button class=ok disabled>[OK]</button>
241 <div class=preparing-label i18n-content=PREPARING_LABEL>[PREPARING]</div> 240 <div class=preparing-label i18n-content=PREPARING_LABEL>[PREPARING]</div>
242 <div class=progress-bar> 241 <div class=progress-bar>
243 <div class=progress-track></div> 242 <div class=progress-track></div>
244 </div> 243 </div>
245 <button class=cancel tabindex=3 i18n-content=CANCEL_LABEL 244 <button class=cancel i18n-content=CANCEL_LABEL
246 >[CANCEL]</button> 245 >[CANCEL]</button>
247 </div> 246 </div>
248 <div class="butter-bar before-show"> 247 <div class="butter-bar before-show">
249 <div class="content"> 248 <div class="content">
250 <div class="butter-message"></div> 249 <div class="butter-message"></div>
251 <div class="progress-bar hide-in-butter"> 250 <div class="progress-bar hide-in-butter">
252 <div class="progress-track"></div> 251 <div class="progress-track"></div>
253 </div> 252 </div>
254 </div> 253 </div>
255 <div class="actions hide-in-butter"></div> 254 <div class="actions hide-in-butter"></div>
256 </div> 255 </div>
257 <div id=drag-image-container></div> 256 <div id=drag-image-container></div>
258 <iframe id=command-dispatcher hidden></iframe> 257 <iframe id=command-dispatcher hidden></iframe>
259 258
260 <script>init();</script> 259 <script>init();</script>
261 </body> 260 </body>
262 </html> 261 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698