| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 </script> | 92 </script> |
| 93 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 93 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 94 | 94 |
| 95 <link rel="stylesheet" href="dom_ui.css"> | 95 <link rel="stylesheet" href="dom_ui.css"> |
| 96 <link rel="stylesheet" href="options/options_page.css"> | 96 <link rel="stylesheet" href="options/options_page.css"> |
| 97 <link rel="stylesheet" href="options/browser_options_page.css"> | 97 <link rel="stylesheet" href="options/browser_options_page.css"> |
| 98 <link rel="stylesheet" href="options/content_settings_page.css"> | 98 <link rel="stylesheet" href="options/content_settings_page.css"> |
| 99 <if expr="pp_ifdef('chromeos')"> | 99 <if expr="pp_ifdef('chromeos')"> |
| 100 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> | 100 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> |
| 101 </if> | 101 </if> |
| 102 <link rel="stylesheet" href="options/personal_options.css"> | |
| 103 </head> | 102 </head> |
| 104 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 103 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 105 <div class="header"> | 104 <div class="header"> |
| 106 </div> | 105 </div> |
| 107 <div id="overlay" class="overlay hidden"> | 106 <div id="overlay" class="overlay hidden"> |
| 108 <div id="overlayview"> | 107 <div id="overlayview"> |
| 109 <button id="close-overlay" onclick="OptionsPage.clearOverlays();"></button> | 108 <button id="close-overlay" onclick="OptionsPage.clearOverlays();"></button> |
| 110 <div class="page hidden" id="dummyPage"> | 109 <div class="page hidden" id="dummyPage"> |
| 111 <!-- TODO(dhg): remove this one once we get another page here --> | 110 <!-- TODO(dhg): remove this one once we get another page here --> |
| 112 Dummy Overlay Page | 111 Dummy Overlay Page |
| (...skipping 16 matching lines...) Expand all Loading... |
| 129 <if expr="pp_ifdef('chromeos')"> | 128 <if expr="pp_ifdef('chromeos')"> |
| 130 <include src="options/chromeos_system_options.html"> | 129 <include src="options/chromeos_system_options.html"> |
| 131 <include src="options/chromeos_language_options.html"> | 130 <include src="options/chromeos_language_options.html"> |
| 132 <include src="options/chromeos_labs.html"> | 131 <include src="options/chromeos_labs.html"> |
| 133 <include src="options/chromeos_accounts_options.html"> | 132 <include src="options/chromeos_accounts_options.html"> |
| 134 <!-- TODO(mazda): include options/chromeos_language_hangul_options.html | 133 <!-- TODO(mazda): include options/chromeos_language_hangul_options.html |
| 135 once the language options dialog is ready. --> | 134 once the language options dialog is ready. --> |
| 136 </if> | 135 </if> |
| 137 <include src="options/browser_options.html"> | 136 <include src="options/browser_options.html"> |
| 138 <include src="options/personal_options.html"> | 137 <include src="options/personal_options.html"> |
| 139 <include src="options/sync_options.html"> | |
| 140 <include src="options/advanced_options.html"> | 138 <include src="options/advanced_options.html"> |
| 141 <include src="options/content_settings.html"> | 139 <include src="options/content_settings.html"> |
| 140 <include src="options/sync_options.html"> |
| 142 </div> | 141 </div> |
| 143 </div> | 142 </div> |
| 144 | 143 |
| 145 <script> | 144 <script> |
| 146 // Decorate the existing elements in the document. | 145 // Decorate the existing elements in the document. |
| 147 cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox); | 146 cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox); |
| 148 cr.ui.decorate('input[pref][type=radio]', PrefRadio); | |
| 149 cr.ui.decorate('input[pref][type=range]', PrefRange); | 147 cr.ui.decorate('input[pref][type=range]', PrefRange); |
| 150 cr.ui.decorate('select[pref]', PrefSelect); | 148 cr.ui.decorate('select[pref]', PrefSelect); |
| 151 cr.ui.decorate('#contentSettingsPage input[type=radio]', ContentSettingsRadio); | 149 cr.ui.decorate('#contentSettingsPage input[type=radio]', ContentSettingsRadio); |
| 152 // TODO(zelidrag) add other elements here when we implement them | 150 // TODO(zelidrag) add other elements here when we implement them |
| 153 </script> | 151 </script> |
| 154 </body> | 152 </body> |
| 155 </html> | 153 </html> |
| OLD | NEW |