| 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/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/cr/ui.html"> | 3 <link rel="import" href="chrome://resources/html/cr/ui.html"> |
| 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> | 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> | |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> | |
| 8 <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"> |
| 9 <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"> |
| 10 <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"> |
| 11 <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"> |
| 12 <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"> |
| 13 <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"> |
| 14 <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="../animation/fade_animations.html"> |
| 15 <link rel="import" href="../route.html"> | 14 <link rel="import" href="../route.html"> |
| 16 | 15 |
| 17 <dom-module id="settings-animated-pages"> | 16 <dom-module id="settings-animated-pages"> |
| 18 <template> | 17 <template> |
| 19 <style> | 18 <style> |
| 20 :host { | 19 :host { |
| 21 display: block; | 20 display: block; |
| 22 } | 21 } |
| 23 | 22 |
| 24 neon-animated-pages { | 23 neon-animated-pages { |
| 25 position: static; | 24 position: static; |
| 26 } | 25 } |
| 27 | 26 |
| 28 neon-animated-pages ::content > .iron-selected { | 27 neon-animated-pages ::content > .iron-selected { |
| 29 position: static; | 28 position: static; |
| 30 } | 29 } |
| 31 </style> | 30 </style> |
| 32 <neon-animated-pages id="animatedPages" attr-for-selected="route-path" | 31 <neon-animated-pages id="animatedPages" attr-for-selected="route-path" |
| 33 on-iron-select="onIronSelect_"> | 32 on-iron-select="onIronSelect_"> |
| 34 <content select="*"></content> | 33 <content select="*"></content> |
| 35 </neon-animated-pages> | 34 </neon-animated-pages> |
| 36 </template> | 35 </template> |
| 37 <script src="settings_animated_pages.js"></script> | 36 <script src="settings_animated_pages.js"></script> |
| 38 </dom-module> | 37 </dom-module> |
| OLD | NEW |