OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 @license |
| 4 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 5 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt |
| 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt |
| 7 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt |
| 8 Code distributed by Google as part of the polymer project is also |
| 9 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
| 10 --> |
| 11 <html lang="en"> |
| 12 <head> |
| 13 <meta charset="UTF-8"> |
| 14 <title>Vulcanizer Test</title> |
| 15 <script src="bower_components/platform/platform.js"></script> |
| 16 <link rel="import" href="absolutes.html"> |
| 17 <link rel="import" href="import-test.html" /> |
| 18 <link rel="stylesheet" href="empty.css"> |
| 19 </head> |
| 20 <body> |
| 21 <x-import>Hello Import!</x-import> |
| 22 <y-import></y-import> |
| 23 <polymer-element name="x-foo" attributes=""> |
| 24 <script>Polymer()</script> |
| 25 </polymer-element> |
| 26 <polymer-element name="x-bar" attributes=""> |
| 27 <script>Polymer({})</script> |
| 28 </polymer-element> |
| 29 <script> |
| 30 console.log('<hi>'); |
| 31 </script> |
| 32 </body> |
| 33 </html> |
OLD | NEW |