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

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

Issue 1613233003: MD Downloads: make Ctrl+f invoke in-page search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dl-vulcanize
Patch Set: rework, revulc Created 4 years, 11 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/roboto.css"> 6 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <style> 8 <style>
9 html { 9 html {
10 background: rgb(236, 239, 241); 10 background: rgb(236, 239, 241);
(...skipping 10 matching lines...) Expand all
21 font-size: 81.25%; 21 font-size: 81.25%;
22 margin: 0; 22 margin: 0;
23 } 23 }
24 </style> 24 </style>
25 </head> 25 </head>
26 <body> 26 <body>
27 <downloads-manager></downloads-manager> 27 <downloads-manager></downloads-manager>
28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C --> 28 <command id="clear-all-command" shortcut="Alt-U+0043"><!-- Alt+C -->
29 <if expr="is_macosx"> 29 <if expr="is_macosx">
30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z --> 30 <command id="undo-command" shortcut="Meta-U+005A"><!-- Command+Z -->
31 <command id="find-command" shortcut="Meta-U+0046"><!-- Command+F -->
31 </if> 32 </if>
32 <if expr="not is_macosx"> 33 <if expr="not is_macosx">
33 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z --> 34 <command id="undo-command" shortcut="Ctrl-U+005A"><!-- Ctrl+Z -->
35 <command id="find-command" shortcut="Ctrl-U+0046"><!-- Ctrl+F -->
34 </if> 36 </if>
35 <link rel="import" href="chrome://resources/html/polymer_config.html"> 37 <link rel="import" href="chrome://resources/html/polymer_config.html">
36 <link rel="import" href="chrome://downloads/i18n_setup.html"> 38 <link rel="import" href="chrome://downloads/i18n_setup.html">
37 <link rel="import" href="chrome://downloads/manager.html"> 39 <link rel="import" href="chrome://downloads/manager.html">
38 <!-- i18n_template.html actually does i18n-* attribute substitutions. 40 <!-- i18n_template.html actually does i18n-* attribute substitutions.
39 It should be imported last and only once. TODO(dbeam): figure out a good 41 It should be imported last and only once. TODO(dbeam): figure out a good
40 solution for each individual element to do this as well. --> 42 solution for each individual element to do this as well. -->
41 <link rel="import" href="chrome://resources/html/i18n_template.html"> 43 <link rel="import" href="chrome://resources/html/i18n_template.html">
42 <script src="chrome://downloads/downloads.js"></script> 44 <script src="chrome://downloads/downloads.js"></script>
43 </body> 45 </body>
44 </html> 46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698