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

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

Issue 7004058: Commit inline editable list changes when window loses focus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nodeinserted Created 9 years, 7 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html id="t" i18n-values="dir:textdirection"> 2 <html id="t" i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <!-- Set the title to that of the default page so that the title doesn't flash 5 <!-- Set the title to that of the default page so that the title doesn't flash
6 on load (for the most common case). --> 6 on load (for the most common case). -->
7 <title i18n-content="browserPageTabTitle"></title> 7 <title i18n-content="browserPageTabTitle"></title>
8 8
9 <link rel="icon" href="../../../app/theme/settings_favicon.png"> 9 <link rel="icon" href="../../../app/theme/settings_favicon.png">
10 <link rel="stylesheet" href="chrome://resources/css/button.css"> 10 <link rel="stylesheet" href="chrome://resources/css/button.css">
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 <script src="chrome://resources/js/cr/event_target.js"></script> 51 <script src="chrome://resources/js/cr/event_target.js"></script>
52 <script src="chrome://resources/js/cr/ui.js"></script> 52 <script src="chrome://resources/js/cr/ui.js"></script>
53 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> 53 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
54 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> 54 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
55 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script> 55 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
56 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></scrip t> 56 <script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></scrip t>
57 <script src="chrome://resources/js/cr/ui/list_item.js"></script> 57 <script src="chrome://resources/js/cr/ui/list_item.js"></script>
58 <script src="chrome://resources/js/cr/ui/list.js"></script> 58 <script src="chrome://resources/js/cr/ui/list.js"></script>
59 <script src="chrome://resources/js/cr/ui/position_util.js"></script> 59 <script src="chrome://resources/js/cr/ui/position_util.js"></script>
60 <script src="chrome://resources/js/cr/ui/tree.js"></script> 60 <script src="chrome://resources/js/cr/ui/tree.js"></script>
61 <script src="chrome://resources/js/event_tracker.js"></script>
61 <script src="chrome://resources/js/local_strings.js"></script> 62 <script src="chrome://resources/js/local_strings.js"></script>
62 <script src="chrome://resources/js/util.js"></script> 63 <script src="chrome://resources/js/util.js"></script>
63 <script src="chrome://settings/options_bundle.js"></script> 64 <script src="chrome://settings/options_bundle.js"></script>
64 </head> 65 </head>
65 <body i18n-values=".style.fontFamily:fontfamily;"> 66 <body i18n-values=".style.fontFamily:fontfamily;">
66 <div class="header"> 67 <div class="header">
67 </div> 68 </div>
68 <div id="overlay" class="overlay transparent" hidden> 69 <div id="overlay" class="overlay transparent" hidden>
69 <include src="alert_overlay.html"> 70 <include src="alert_overlay.html">
70 <include src="autofill_edit_address_overlay.html"> 71 <include src="autofill_edit_address_overlay.html">
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 </div> 153 </div>
153 </div> 154 </div>
154 </div> 155 </div>
155 </div> 156 </div>
156 </div> 157 </div>
157 <script src="chrome://settings/strings.js"></script> 158 <script src="chrome://settings/strings.js"></script>
158 <script src="chrome://resources/js/i18n_template.js"></script> 159 <script src="chrome://resources/js/i18n_template.js"></script>
159 <script src="chrome://resources/js/i18n_process.js"></script> 160 <script src="chrome://resources/js/i18n_process.js"></script>
160 </body> 161 </body>
161 </html> 162 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698