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

Side by Side Diff: chrome/browser/resources/downloads/downloads.html

Issue 807593005: Make downloads list keyboard shortcuts more consistent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Apply Feedback Created 5 years, 10 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <!-- This has to come after chrome_shared.css --> 7 <!-- This has to come after chrome_shared.css -->
8 <link rel="stylesheet" href="downloads.css"> 8 <link rel="stylesheet" href="downloads.css">
9 <script src="chrome://resources/js/action_link.js"></script> 9 <script src="chrome://resources/js/action_link.js"></script>
10 <script src="chrome://resources/js/cr.js"></script> 10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/ui.js"></script> 11 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/cr/ui/command.js"></script> 12 <script src="chrome://resources/js/cr/ui/command.js"></script>
13 <script src="chrome://resources/js/load_time_data.js"></script> 13 <script src="chrome://resources/js/load_time_data.js"></script>
14 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
15 <script src="chrome://resources/js/assert.js"></script>
16 <script src="chrome://resources/js/event_tracker.js"></script>
17 <script src="chrome://resources/js/cr/ui/focus_row.js"></script>
18 <script src="chrome://resources/js/cr/ui/focus_grid.js"></script>
15 <script src="chrome://downloads/downloads.js"></script> 19 <script src="chrome://downloads/downloads.js"></script>
16 </head> 20 </head>
17 <body> 21 <body>
18 <header> 22 <header>
19 <h1 i18n-content="downloads"></h1> 23 <h1 i18n-content="downloads"></h1>
20 <input id="term" type="search" tabindex=1 24 <input id="term" type="search" tabindex=1
21 i18n-values="placeholder:searchbutton" autofocus incremental> 25 i18n-values="placeholder:searchbutton" autofocus incremental>
22 </header> 26 </header>
23 <div class="main"> 27 <div class="main">
24 <div class="summary" id="downloads-summary"> 28 <div class="summary" id="downloads-summary">
(...skipping 11 matching lines...) Expand all
36 <if expr="is_macosx"> 40 <if expr="is_macosx">
37 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> 41 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
38 </if> 42 </if>
39 <if expr="not is_macosx"> 43 <if expr="not is_macosx">
40 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 44 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
41 </if> 45 </if>
42 <script src="chrome://downloads/strings.js"></script> 46 <script src="chrome://downloads/strings.js"></script>
43 <script src="chrome://resources/js/i18n_template2.js"></script> 47 <script src="chrome://resources/js/i18n_template2.js"></script>
44 </body> 48 </body>
45 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698