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

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

Issue 18593003: Disable mouse-focus of buttons in some WebUI pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a public function to FocusManager Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.js » ('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 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="is_android or pp_ifdef('ios')"> 5 <if expr="is_android or pp_ifdef('ios')">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> 10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
(...skipping 13 matching lines...) Expand all
24 <link rel="stylesheet" href="history_mobile.css"> 24 <link rel="stylesheet" href="history_mobile.css">
25 </if> 25 </if>
26 <if expr="not is_android and not pp_ifdef('ios')"> 26 <if expr="not is_android and not pp_ifdef('ios')">
27 <link rel="stylesheet" href="other_devices.css"> 27 <link rel="stylesheet" href="other_devices.css">
28 </if> 28 </if>
29 29
30 <script src="chrome://resources/js/event_tracker.js"></script> 30 <script src="chrome://resources/js/event_tracker.js"></script>
31 <script src="chrome://resources/js/cr.js"></script> 31 <script src="chrome://resources/js/cr.js"></script>
32 <script src="chrome://resources/js/cr/ui.js"></script> 32 <script src="chrome://resources/js/cr/ui.js"></script>
33 <script src="chrome://resources/js/cr/ui/command.js"></script> 33 <script src="chrome://resources/js/cr/ui/command.js"></script>
34 <script src="chrome://resources/js/cr/ui/focus_manager.js"></script>
34 <script src="chrome://resources/js/cr/ui/menu_item.js"></script> 35 <script src="chrome://resources/js/cr/ui/menu_item.js"></script>
35 <script src="chrome://resources/js/cr/ui/menu.js"></script> 36 <script src="chrome://resources/js/cr/ui/menu.js"></script>
36 <if expr="not is_android and not pp_ifdef('ios')"> 37 <if expr="not is_android and not pp_ifdef('ios')">
37 <script src="chrome://resources/js/cr/ui/alert_overlay.js"></script> 38 <script src="chrome://resources/js/cr/ui/alert_overlay.js"></script>
38 <script src="chrome://resources/js/cr/ui/overlay.js"></script> 39 <script src="chrome://resources/js/cr/ui/overlay.js"></script>
39 </if> 40 </if>
40 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 41 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
41 <script src="chrome://resources/js/cr/ui/menu_button.js"></script> 42 <script src="chrome://resources/js/cr/ui/menu_button.js"></script>
42 <script src="chrome://resources/js/cr/ui/context_menu_button.js"></script> 43 <script src="chrome://resources/js/cr/ui/context_menu_button.js"></script>
43 <script src="chrome://resources/js/cr/event_target.js"></script> 44 <script src="chrome://resources/js/cr/event_target.js"></script>
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 <script src="chrome://history-frame/strings.js"></script> 140 <script src="chrome://history-frame/strings.js"></script>
140 <script src="chrome://resources/js/i18n_template2.js"></script> 141 <script src="chrome://resources/js/i18n_template2.js"></script>
141 142
142 <if expr="not is_android and not pp_ifdef('ios')"> 143 <if expr="not is_android and not pp_ifdef('ios')">
143 <div id="overlay" class="overlay" hidden> 144 <div id="overlay" class="overlay" hidden>
144 <include src="alert_overlay.html"> 145 <include src="alert_overlay.html">
145 </div> 146 </div>
146 </if> 147 </if>
147 </body> 148 </body>
148 </html> 149 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698