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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_section.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
3 <link rel="import" href="../animation/animation.html"> 4 <link rel="import" href="../animation/animation.html">
4 5
5 <dom-module id="settings-section"> 6 <dom-module id="settings-section">
6 <template> 7 <template>
7 <style> 8 <style>
8 :host { 9 :host {
9 -webkit-margin-end: 3px; 10 -webkit-margin-end: 3px;
10 -webkit-margin-start: 3px; 11 -webkit-margin-start: 3px;
11 display: flex; 12 display: flex;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 </style> 62 </style>
62 <div id="header"> 63 <div id="header">
63 <h2 class="title">{{pageTitle}}</h2> 64 <h2 class="title">{{pageTitle}}</h2>
64 </div> 65 </div>
65 <div id="card"> 66 <div id="card">
66 <content id="content"></content> 67 <content id="content"></content>
67 </div> 68 </div>
68 </template> 69 </template>
69 <script src="settings_section.js"></script> 70 <script src="settings_section.js"></script>
70 </dom-module> 71 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698