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

Side by Side Diff: chrome/browser/resources/md_history/history.html

Issue 2118383003: MD History: add shortcuts for search (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test change Created 4 years, 5 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 dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf8"> 4 <meta charset="utf8">
5 <title>$i18n{title}</title> 5 <title>$i18n{title}</title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
9 9
10 <style> 10 <style>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 </head> 62 </head>
63 63
64 <body class="loading"> 64 <body class="loading">
65 <history-app id="history-app"></history-app> 65 <history-app id="history-app"></history-app>
66 66
67 <div id="app-shim"> 67 <div id="app-shim">
68 <span id="loading-toolbar">$i18n{title}</span> 68 <span id="loading-toolbar">$i18n{title}</span>
69 <span id="loading-message">$i18n{loading}</span> 69 <span id="loading-message">$i18n{loading}</span>
70 </div> 70 </div>
71 71
72 <if expr="is_macosx">
73 <command id="find-command" shortcut="Meta|f /">
74 </if>
75 <if expr="not is_macosx">
76 <command id="find-command" shortcut="Ctrl|f /">
77 </if>
78
72 <link rel="import" href="chrome://resources/html/cr.html"> 79 <link rel="import" href="chrome://resources/html/cr.html">
73 <link rel="import" href="chrome://resources/html/util.html"> 80 <link rel="import" href="chrome://resources/html/util.html">
74 <link rel="import" href="chrome://resources/html/load_time_data.html"> 81 <link rel="import" href="chrome://resources/html/load_time_data.html">
75 <link rel="import" href="chrome://history/constants.html"> 82 <link rel="import" href="chrome://history/constants.html">
76 <script src="strings.js"></script> 83 <script src="strings.js"></script>
77 <script src="history.js"></script> 84 <script src="history.js"></script>
78 85
79 <link rel="import" href="chrome://history/app.html" async id="bundle"> 86 <link rel="import" href="chrome://history/app.html" async id="bundle">
80 </body> 87 </body>
81 88
82 </html> 89 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/compiled_resources2.gyp ('k') | chrome/browser/resources/md_history/history_toolbar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698