OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright 2013 The Polymer Authors. All rights reserved. | 3 Copyright 2013 The Polymer Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style | 4 Use of this source code is governed by a BSD-style |
5 license that can be found in the LICENSE file. | 5 license that can be found in the LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 <title>core-style</title> | 9 <title>core-style</title> |
10 <script src="../platform/platform.js"></script> | 10 <script src="../webcomponentsjs/webcomponents.js"></script> |
11 | 11 |
12 <link rel="import" href="elements.html"> | 12 <link rel="import" href="elements.html"> |
13 <link rel="import" href="my-theme.html"> | 13 <link rel="import" href="my-theme.html"> |
14 | 14 |
15 </head> | 15 </head> |
16 <body unresolved fullbleed vertical layout> | 16 <body unresolved fullbleed vertical layout> |
17 <core-style ref="main"></core-style> | 17 <core-style ref="main"></core-style> |
18 | 18 |
19 <template is="auto-binding"> | 19 <template is="auto-binding"> |
20 <my-toolbar> | 20 <my-toolbar> |
(...skipping 28 matching lines...) Expand all Loading... |
49 }); | 49 }); |
50 }); | 50 }); |
51 | 51 |
52 })(); | 52 })(); |
53 </script> | 53 </script> |
54 | 54 |
55 </body> | 55 </body> |
56 </html> | 56 </html> |
57 | 57 |
58 | 58 |
OLD | NEW |