Index: node_modules/vulcanize/example/index.html |
diff --git a/node_modules/vulcanize/example/index.html b/node_modules/vulcanize/example/index.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b551d2c836ac9e8b25edcaaa6c2c7ceae72608ea |
--- /dev/null |
+++ b/node_modules/vulcanize/example/index.html |
@@ -0,0 +1,33 @@ |
+<!DOCTYPE html> |
+<!-- |
+ @license |
+ Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
+ This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt |
+ The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
+ The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
+ Code distributed by Google as part of the polymer project is also |
+ subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt |
+--> |
+<html lang="en"> |
+<head> |
+ <meta charset="UTF-8"> |
+ <title>Vulcanizer Test</title> |
+ <script src="bower_components/platform/platform.js"></script> |
+ <link rel="import" href="absolutes.html"> |
+ <link rel="import" href="import-test.html" /> |
+ <link rel="stylesheet" href="empty.css"> |
+</head> |
+<body> |
+ <x-import>Hello Import!</x-import> |
+ <y-import></y-import> |
+ <polymer-element name="x-foo" attributes=""> |
+ <script>Polymer()</script> |
+ </polymer-element> |
+ <polymer-element name="x-bar" attributes=""> |
+ <script>Polymer({})</script> |
+ </polymer-element> |
+ <script> |
+ console.log('<hi>'); |
+ </script> |
+</body> |
+</html> |