OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;" id="t"> | 2 <html i18n-values="dir:textdirection;" id="t"> |
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 | 6 |
7 <!-- TODO(zelidrag) need a better icon here --> | 7 <!-- TODO(zelidrag) need a better icon here --> |
8 <link rel="icon" href="../../app/theme/history_favicon.png"> | 8 <link rel="icon" href="../../app/theme/history_favicon.png"> |
9 | 9 |
10 <script src="chrome://resources/js/class_list.js"></script> | 10 <script src="chrome://resources/js/class_list.js"></script> |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 | 151 |
152 window.onpopstate = function(e) { | 152 window.onpopstate = function(e) { |
153 options.OptionsPage.setState(e.state); | 153 options.OptionsPage.setState(e.state); |
154 }; | 154 }; |
155 </script> | 155 </script> |
156 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 156 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
157 <link rel="stylesheet" href="dom_ui.css"> | 157 <link rel="stylesheet" href="dom_ui.css"> |
158 <link rel="stylesheet" href="options/options_page.css"> | 158 <link rel="stylesheet" href="options/options_page.css"> |
159 | 159 |
160 <link rel="stylesheet" href="options/add_startup_page_overlay.css"> | 160 <link rel="stylesheet" href="options/add_startup_page_overlay.css"> |
| 161 <link rel="stylesheet" href="options/autofill_options_page.css"> |
161 <link rel="stylesheet" href="options/browser_options_page.css"> | 162 <link rel="stylesheet" href="options/browser_options_page.css"> |
162 <link rel="stylesheet" href="options/clear_browser_data_overlay.css"> | 163 <link rel="stylesheet" href="options/clear_browser_data_overlay.css"> |
163 <link rel="stylesheet" href="options/content_settings_exceptions_area.css"> | 164 <link rel="stylesheet" href="options/content_settings_exceptions_area.css"> |
164 <link rel="stylesheet" href="options/import_data_overlay.css"> | 165 <link rel="stylesheet" href="options/import_data_overlay.css"> |
165 <link rel="stylesheet" href="options/subpages_tab_controls.css"> | 166 <link rel="stylesheet" href="options/subpages_tab_controls.css"> |
166 <if expr="pp_ifdef('chromeos')"> | 167 <if expr="pp_ifdef('chromeos')"> |
167 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> | 168 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> |
168 <link rel="stylesheet" href="options/chromeos_internet_options_page.css"> | 169 <link rel="stylesheet" href="options/chromeos_internet_options_page.css"> |
169 <link rel="stylesheet" href="options/chromeos_language_options.css"> | 170 <link rel="stylesheet" href="options/chromeos_language_options.css"> |
170 </if> | 171 </if> |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 cr.ui.decorate('input[pref][type=number]', options.PrefNumber); | 222 cr.ui.decorate('input[pref][type=number]', options.PrefNumber); |
222 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio); | 223 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio); |
223 cr.ui.decorate('input[pref][type=range]', options.PrefRange); | 224 cr.ui.decorate('input[pref][type=range]', options.PrefRange); |
224 cr.ui.decorate('select[pref]', options.PrefSelect); | 225 cr.ui.decorate('select[pref]', options.PrefSelect); |
225 cr.ui.decorate('input[pref][type=url]', options.PrefTextField); | 226 cr.ui.decorate('input[pref][type=url]', options.PrefTextField); |
226 cr.ui.decorate('#contentSettingsPage input[type=radio]', | 227 cr.ui.decorate('#contentSettingsPage input[type=radio]', |
227 options.ContentSettingsRadio); | 228 options.ContentSettingsRadio); |
228 </script> | 229 </script> |
229 </body> | 230 </body> |
230 </html> | 231 </html> |
OLD | NEW |