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

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

Issue 701583002: downloads/bookmarks: change <h2> to <h1> for better screen reader semantics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/downloads/downloads.html » ('j') | 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>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 <script src="chrome://resources/js/util.js"></script> 49 <script src="chrome://resources/js/util.js"></script>
50 50
51 <script src="js/bmm.js"></script> 51 <script src="js/bmm.js"></script>
52 <script src="js/bmm/bookmark_list.js"></script> 52 <script src="js/bmm/bookmark_list.js"></script>
53 <script src="js/bmm/bookmark_tree.js"></script> 53 <script src="js/bmm/bookmark_tree.js"></script>
54 <script src="js/dnd.js"></script> 54 <script src="js/dnd.js"></script>
55 </head> 55 </head>
56 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 56 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
57 57
58 <header> 58 <header>
59 <h2 i18n-content="title"></h2> 59 <h1 i18n-content="title"></h1>
60 <form> 60 <form>
61 <input type="search" id="term" i18n-values="placeholder:search_button" 61 <input type="search" id="term" i18n-values="placeholder:search_button"
62 autofocus incremental> 62 autofocus incremental>
63 </form> 63 </form>
64 </header> 64 </header>
65 65
66 <div class="main"> 66 <div class="main">
67 <div id="tree-pane" class="pane"> 67 <div id="tree-pane" class="pane">
68 <div> 68 <div>
69 <button menu="#folders-menu" i18n-content="folders_menu" 69 <button menu="#folders-menu" i18n-content="folders_menu"
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 <button command="#delete-command"></button> 196 <button command="#delete-command"></button>
197 <button command="#undo-delete-command"></button> 197 <button command="#undo-delete-command"></button>
198 <hr> 198 <hr>
199 <button command="#add-new-bookmark-command"></button> 199 <button command="#add-new-bookmark-command"></button>
200 <button command="#new-folder-command"></button> 200 <button command="#new-folder-command"></button>
201 </menu> 201 </menu>
202 202
203 <script src="js/main.js"></script> 203 <script src="js/main.js"></script>
204 </body> 204 </body>
205 </html> 205 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/downloads/downloads.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698