| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 |
| 1 <link rel="import" href="chrome://resources/html/md_select_css.html"> | 3 <link rel="import" href="chrome://resources/html/md_select_css.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be
havior.html"> | 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_be
havior.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_pref_in
dicator.html"> |
| 5 <link rel="import" href="pref_control_behavior.html"> | 6 <link rel="import" href="pref_control_behavior.html"> |
| 6 <link rel="import" href="../i18n_setup.html"> | 7 <link rel="import" href="../i18n_setup.html"> |
| 7 <link rel="import" href="../prefs/pref_util.html"> | 8 <link rel="import" href="../prefs/pref_util.html"> |
| 8 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 9 <link rel="import" href="../settings_vars_css.html"> | 10 <link rel="import" href="../settings_vars_css.html"> |
| 10 | 11 |
| 11 <dom-module id="settings-dropdown-menu"> | 12 <dom-module id="settings-dropdown-menu"> |
| 12 <template> | 13 <template> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 37 <option value="[[notFoundValue_]]" | 38 <option value="[[notFoundValue_]]" |
| 38 disabled="[[!showNotFoundValue_(menuOptions, pref.value)]]"> | 39 disabled="[[!showNotFoundValue_(menuOptions, pref.value)]]"> |
| 39 $i18n{custom} | 40 $i18n{custom} |
| 40 </option> | 41 </option> |
| 41 </select> | 42 </select> |
| 42 <span class="md-select-underline"></span> | 43 <span class="md-select-underline"></span> |
| 43 </div> | 44 </div> |
| 44 </template> | 45 </template> |
| 45 <script src="settings_dropdown_menu.js"></script> | 46 <script src="settings_dropdown_menu.js"></script> |
| 46 </dom-module> | 47 </dom-module> |
| OLD | NEW |