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

Unified Diff: chrome/browser/resources/settings/advanced_page/advanced_page.html

Issue 1358313004: Settings Rewrite: Make subpage scrolling work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/advanced_page/advanced_page.html
diff --git a/chrome/browser/resources/settings/advanced_page/advanced_page.html b/chrome/browser/resources/settings/advanced_page/advanced_page.html
index f2700369721e1ddc681e4b143bdcf83ce693f67e..5bf3fd64a0fed774f35a4757b149d97621a2be4d 100644
--- a/chrome/browser/resources/settings/advanced_page/advanced_page.html
+++ b/chrome/browser/resources/settings/advanced_page/advanced_page.html
@@ -12,24 +12,25 @@
</if>
<dom-module id="cr-settings-advanced-page">
+ <link rel="import" type="css" href="advanced_page.css">
<template>
<if expr="chromeos">
<cr-settings-section i18n-values="page-title:dateTimePageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="dateTime">
<cr-settings-date-time-page prefs="{{prefs}}">
</cr-settings-date-time-page>
</cr-settings-section>
</if>
<cr-settings-section i18n-values="page-title:siteSettingsLocation"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="location">
<cr-settings-location-page prefs="{{prefs}}">
</cr-settings-location-page>
</cr-settings-section>
<cr-settings-section i18n-values="page-title:privacyPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="privacy">
<cr-settings-privacy-page prefs="{{prefs}}"
current-route="{{currentRoute}}">
@@ -37,27 +38,27 @@
</cr-settings-section>
<cr-settings-section i18n-values="page-title:languagesPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="languages">
<cr-settings-languages-page prefs="{{prefs}}">
</cr-settings-languages-page>
</cr-settings-section>
<cr-settings-section i18n-values="page-title:downloadsPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="downloads">
<cr-settings-downloads-page prefs="{{prefs}}">
</cr-settings-downloads-page>
</cr-settings-section>
<cr-settings-section i18n-values="page-title:a11yPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="a11y">
<cr-settings-a11y-page prefs="{{prefs}}"></cr-settings-a11y-page>
</cr-settings-section>
<cr-settings-section i18n-values="page-title:syncPageTitle"
- expand-container="{{expandContainer}}"
+ expand-container="[[expandContainer]]"
current-route="[[currentRoute]]" section="sync">
<cr-settings-sync-page></cr-settings-sync-page>
</cr-settings-section>

Powered by Google App Engine
This is Rietveld 408576698