| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 window.onpopstate = function(e) { | 91 window.onpopstate = function(e) { |
| 92 OptionsPage.setState(e.state); | 92 OptionsPage.setState(e.state); |
| 93 }; | 93 }; |
| 94 | 94 |
| 95 </script> | 95 </script> |
| 96 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 96 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 97 <link rel="stylesheet" href="dom_ui.css"> | 97 <link rel="stylesheet" href="dom_ui.css"> |
| 98 <link rel="stylesheet" href="options/options_page.css"> | 98 <link rel="stylesheet" href="options/options_page.css"> |
| 99 <link rel="stylesheet" href="options/browser_options_page.css"> | 99 <link rel="stylesheet" href="options/browser_options_page.css"> |
| 100 <link rel="stylesheet" href="options/content_settings_page.css"> | 100 <link rel="stylesheet" href="options/content_settings_page.css"> |
| 101 <link rel="stylesheet" href="options/clear_browser_data_overlay.css"> |
| 101 <if expr="pp_ifdef('chromeos')"> | 102 <if expr="pp_ifdef('chromeos')"> |
| 102 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> | 103 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> |
| 103 <link rel="stylesheet" href="options/chromeos_language_options.css"> | 104 <link rel="stylesheet" href="options/chromeos_language_options.css"> |
| 104 </if> | 105 </if> |
| 105 </head> | 106 </head> |
| 106 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 107 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 107 <div class="header"> | 108 <div class="header"> |
| 108 </div> | 109 </div> |
| 109 <div id="overlay" class="overlay hidden"> | 110 <div id="overlay" class="overlay hidden"> |
| 110 <div id="overlayview"> | 111 <div id="overlayview"> |
| 111 <button id="close-overlay" onclick="OptionsPage.clearOverlays();"></button> | |
| 112 <include src="options/clear_browser_data_overlay.html"> | 112 <include src="options/clear_browser_data_overlay.html"> |
| 113 <include src="options/font_settings_overlay.html"> | 113 <include src="options/font_settings_overlay.html"> |
| 114 <if expr="pp_ifdef('chromeos')"> | 114 <if expr="pp_ifdef('chromeos')"> |
| 115 <include src="options/chromeos_accounts_add_user_overlay.html"> | 115 <include src="options/chromeos_accounts_add_user_overlay.html"> |
| 116 </if> | 116 </if> |
| 117 </div> | 117 </div> |
| 118 </div> | 118 </div> |
| 119 <div id="main-content"> | 119 <div id="main-content"> |
| 120 <div id="navbar-container"> | 120 <div id="navbar-container"> |
| 121 <h1 id="settings-title" i18n-content="title"></h1> | 121 <h1 id="settings-title" i18n-content="title"></h1> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 146 // Decorate the existing elements in the document. | 146 // Decorate the existing elements in the document. |
| 147 cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox); | 147 cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox); |
| 148 cr.ui.decorate('input[pref][type=range]', PrefRange); | 148 cr.ui.decorate('input[pref][type=range]', PrefRange); |
| 149 cr.ui.decorate('select[pref]', PrefSelect); | 149 cr.ui.decorate('select[pref]', PrefSelect); |
| 150 cr.ui.decorate('input[pref][type=url]', PrefTextField); | 150 cr.ui.decorate('input[pref][type=url]', PrefTextField); |
| 151 cr.ui.decorate('#contentSettingsPage input[type=radio]', ContentSettingsRadio); | 151 cr.ui.decorate('#contentSettingsPage input[type=radio]', ContentSettingsRadio); |
| 152 // TODO(zelidrag) add other elements here when we implement them | 152 // TODO(zelidrag) add other elements here when we implement them |
| 153 </script> | 153 </script> |
| 154 </body> | 154 </body> |
| 155 </html> | 155 </html> |
| OLD | NEW |