Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1683)

Side by Side Diff: chrome/browser/resources/settings/privacy_page/privacy_page.html

Issue 2817903004: MD Settings: Focus cookies search field when exiting cookie details subpage. (Closed)
Patch Set: Simulate pop state in test. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html"> 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout-classes.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html"> 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html">
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 <div class="settings-box two-line"> 280 <div class="settings-box two-line">
281 <settings-toggle-button class="start" 281 <settings-toggle-button class="start"
282 pref="{{prefs.profile.block_third_party_cookies}}" 282 pref="{{prefs.profile.block_third_party_cookies}}"
283 label="$i18n{thirdPartyCookie}" 283 label="$i18n{thirdPartyCookie}"
284 sub-label="$i18n{thirdPartyCookieSublabel}"> 284 sub-label="$i18n{thirdPartyCookieSublabel}">
285 </settings-toggle-button> 285 </settings-toggle-button>
286 </div> 286 </div>
287 <category-setting-exceptions 287 <category-setting-exceptions
288 category="{{ContentSettingsTypes.COOKIES}}"> 288 category="{{ContentSettingsTypes.COOKIES}}">
289 </category-setting-exceptions> 289 </category-setting-exceptions>
290 <site-data></site-data> 290 <site-data focus-config="[[focusConfig_]]"></site-data>
291 </settings-subpage> 291 </settings-subpage>
292 </template> 292 </template>
293 <template is="dom-if" route-path="/content/images" no-search> 293 <template is="dom-if" route-path="/content/images" no-search>
294 <settings-subpage page-title="$i18n{siteSettingsCategoryImages}"> 294 <settings-subpage page-title="$i18n{siteSettingsCategoryImages}">
295 <category-default-setting category="{{ContentSettingsTypes.IMAGES}}" 295 <category-default-setting category="{{ContentSettingsTypes.IMAGES}}"
296 toggle-off-label="$i18n{siteSettingsDontShowImages}" 296 toggle-off-label="$i18n{siteSettingsDontShowImages}"
297 toggle-on-label="$i18n{siteSettingsShowAllRecommended}"> 297 toggle-on-label="$i18n{siteSettingsShowAllRecommended}">
298 </category-default-setting> 298 </category-default-setting>
299 <category-setting-exceptions 299 <category-setting-exceptions
300 category="{{ContentSettingsTypes.IMAGES}}"> 300 category="{{ContentSettingsTypes.IMAGES}}">
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 490 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
491 </category-setting-exceptions> 491 </category-setting-exceptions>
492 </template> 492 </template>
493 </if> 493 </if>
494 </settings-subpage> 494 </settings-subpage>
495 </template> 495 </template>
496 </settings-animated-pages> 496 </settings-animated-pages>
497 </template> 497 </template>
498 <script src="privacy_page.js"></script> 498 <script src="privacy_page.js"></script>
499 </dom-module> 499 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698