| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_slider/cr_slider.html
"> |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 6 <link rel="import" href="fonts_browser_proxy.html"> | 6 <link rel="import" href="fonts_browser_proxy.html"> |
| 7 <link rel="import" href="../controls/settings_dropdown_menu.html"> | 7 <link rel="import" href="../controls/settings_dropdown_menu.html"> |
| 8 <link rel="import" href="../i18n_setup.html"> | 8 <link rel="import" href="../i18n_setup.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 10 | 10 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 prefs.webkit.webprefs.default_fixed_font_size.value, | 103 prefs.webkit.webprefs.default_fixed_font_size.value, |
| 104 prefs.webkit.webprefs.fonts.fixed.Zyyy.value)]]"> | 104 prefs.webkit.webprefs.fonts.fixed.Zyyy.value)]]"> |
| 105 <span> | 105 <span> |
| 106 [[prefs.webkit.webprefs.default_font_size.value]]: | 106 [[prefs.webkit.webprefs.default_font_size.value]]: |
| 107 $i18n{quickBrownFox} | 107 $i18n{quickBrownFox} |
| 108 </span> | 108 </span> |
| 109 </div> | 109 </div> |
| 110 </div> | 110 </div> |
| 111 </div> | 111 </div> |
| 112 </div> | 112 </div> |
| 113 <div class="settings-box two-line" id="advancedButton" | 113 <template is="dom-if" if="[[!isGuest_]]"> |
| 114 on-tap="openAdvancedExtension_" actionable> | 114 <div class="settings-box two-line" id="advancedButton" |
| 115 <div class="start"> | 115 on-tap="openAdvancedExtension_" actionable> |
| 116 <div>$i18n{advancedFontSettings}</div> | 116 <div class="start"> |
| 117 <div class="secondary" id="advancedButtonSublabel"> | 117 <div>$i18n{advancedFontSettings}</div> |
| 118 [[advancedExtensionSublabel_]] | 118 <div class="secondary" id="advancedButtonSublabel"> |
| 119 [[advancedExtensionSublabel_]] |
| 120 </div> |
| 119 </div> | 121 </div> |
| 122 <button class="icon-external" is="paper-icon-button-light"></button> |
| 120 </div> | 123 </div> |
| 121 <button class="icon-external" is="paper-icon-button-light"></button> | 124 </template> |
| 122 </div> | |
| 123 </template> | 125 </template> |
| 124 <script src="appearance_fonts_page.js"></script> | 126 <script src="appearance_fonts_page.js"></script> |
| 125 </dom-module> | 127 </dom-module> |
| OLD | NEW |