| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-right-animation.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-right-animation.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-left-animation.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-left-animation.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-right-animation.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-right-animation.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> | 11 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mated-pages.html"> |
| 12 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mation-runner-behavior.html"> | 12 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mation-runner-behavior.html"> |
| 13 <link rel="import" href="/route.html"> | 13 <link rel="import" href="/route.html"> |
| 14 | 14 |
| 15 <dom-module id="settings-animated-pages"> | 15 <dom-module id="settings-animated-pages"> |
| 16 <template> | 16 <template> |
| 17 <style> | 17 <style> |
| 18 :host { | 18 :host { |
| 19 display: block; | 19 display: block; |
| 20 } | 20 } |
| 21 | 21 |
| 22 neon-animated-pages { |
| 23 position: static; |
| 24 } |
| 25 |
| 22 neon-animated-pages ::content > .iron-selected { | 26 neon-animated-pages ::content > .iron-selected { |
| 23 position: static; | 27 position: static; |
| 24 } | 28 } |
| 25 </style> | 29 </style> |
| 26 <neon-animated-pages id="animatedPages" attr-for-selected="id"> | 30 <neon-animated-pages id="animatedPages" attr-for-selected="id"> |
| 27 <content select="*"></content> | 31 <content select="*"></content> |
| 28 </neon-animated-pages> | 32 </neon-animated-pages> |
| 29 </template> | 33 </template> |
| 30 <script src="settings_animated_pages.js"></script> | 34 <script src="settings_animated_pages.js"></script> |
| 31 </dom-module> | 35 </dom-module> |
| OLD | NEW |