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

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

Issue 10383200: Fix focusring for bookmark manager search box (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « chrome/browser/resources/bookmark_manager/css/bmm.css ('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 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <!-- 3 <!--
4 4
5 Copyright (c) 2012 The Chromium Authors. All rights reserved. 5 Copyright (c) 2012 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 --> 9 -->
10 <head> 10 <head>
11 <meta name="google" value="notranslate"> 11 <meta name="google" value="notranslate">
12 <title i18n-content="title"></title> 12 <title i18n-content="title"></title>
13 13
14 <link rel="stylesheet" href="chrome://resources/css/list.css"> 14 <link rel="stylesheet" href="chrome://resources/css/list.css">
15 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 15 <link rel="stylesheet" href="chrome://resources/css/tree.css">
16 <link rel="stylesheet" href="chrome://resources/css/menu.css"> 16 <link rel="stylesheet" href="chrome://resources/css/menu.css">
17 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
17 <link rel="stylesheet" href="css/bmm.css"> 18 <link rel="stylesheet" href="css/bmm.css">
18 19
19 <script src="chrome://resources/css/tree.css.js"></script> 20 <script src="chrome://resources/css/tree.css.js"></script>
20 <script src="css/bmm.css.js"></script> 21 <script src="css/bmm.css.js"></script>
21 <script src="chrome://resources/js/event_tracker.js"></script> 22 <script src="chrome://resources/js/event_tracker.js"></script>
22 23
23 <script src="chrome://resources/js/cr.js"></script> 24 <script src="chrome://resources/js/cr.js"></script>
24 <script src="chrome://resources/js/cr/event_target.js"></script> 25 <script src="chrome://resources/js/cr/event_target.js"></script>
25 <script src="chrome://resources/js/cr/link_controller.js"></script> 26 <script src="chrome://resources/js/cr/link_controller.js"></script>
26 <script src="chrome://resources/js/cr/promise.js"></script> 27 <script src="chrome://resources/js/cr/promise.js"></script>
(...skipping 18 matching lines...) Expand all
45 <script src="chrome://resources/js/load_time_data.js"></script> 46 <script src="chrome://resources/js/load_time_data.js"></script>
46 <script src="chrome://resources/js/util.js"></script> 47 <script src="chrome://resources/js/util.js"></script>
47 48
48 <script src="js/bmm.js"></script> 49 <script src="js/bmm.js"></script>
49 <script src="js/bmm/bookmark_list.js"></script> 50 <script src="js/bmm/bookmark_list.js"></script>
50 <script src="js/bmm/bookmark_tree.js"></script> 51 <script src="js/bmm/bookmark_tree.js"></script>
51 </head> 52 </head>
52 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 53 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
53 54
54 <div class="header"> 55 <div class="header">
55 <button class="logo" tabindex=3></button> 56 <button class="logo link-button" tabindex=3></button>
56 <form onsubmit="setSearch(this.term.value); return false;" 57 <form onsubmit="setSearch(this.term.value); return false;"
57 class="form"> 58 class="form">
58 <input type="search" id="term" tabindex=1 autofocus incremental 59 <input type="search" id="term" tabindex=1 autofocus incremental
59 i18n-values="placeholder:search_button"> 60 i18n-values="placeholder:search_button">
60 </form> 61 </form>
61 </div> 62 </div>
62 63
63 <div class="summary"> 64 <div class="summary">
64 <h3 i18n-content="title"></h3> 65 <h3 i18n-content="title"></h3>
65 <button menu="#organize-menu" tabindex="-1" i18n-content="organize_menu"></but ton> 66 <button menu="#organize-menu" tabindex="-1" i18n-content="organize_menu"></but ton>
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 <hr> 141 <hr>
141 <button command="#add-new-bookmark-command"></button> 142 <button command="#add-new-bookmark-command"></button>
142 <button command="#new-folder-command"></button> 143 <button command="#new-folder-command"></button>
143 </menu> 144 </menu>
144 145
145 <div id="drop-overlay"></div> 146 <div id="drop-overlay"></div>
146 147
147 <script src="js/main.js"></script> 148 <script src="js/main.js"></script>
148 </body> 149 </body>
149 </html> 150 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/bookmark_manager/css/bmm.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698