Index: node_modules/vulcanize/example/import-test.html |
diff --git a/node_modules/vulcanize/example/import-test.html b/node_modules/vulcanize/example/import-test.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..605a9956f8a82fe1eace11348450d10c31904ebc |
--- /dev/null |
+++ b/node_modules/vulcanize/example/import-test.html |
@@ -0,0 +1,58 @@ |
+<!-- |
+ @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 |
+--> |
+<link rel="import" href="bower_components/polymer/polymer.html"> |
+<link rel="import" href="sub-import/sub-import.html"> |
+<polymer-element name="x-import"> |
+ <template> |
+ <link rel="stylesheet" href="import-test.css" shim-shadowdom> |
+ [Imported: <content></content>] |
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 630 630" fill="#fff" width="630" height="630" flex?="{{mode !== 'cover'}}"> |
+ <rect x="0" y="0" width="630" height="630" fill="#3c790a"/> |
+ <path d="m212 497c11 17 20 31 40 31 19 0 32-8 32-37v-201h59v202c0 61-36 89-88 89-47 0-75-25-89-54M423 492c13 21 29 36 58 36 25 0 40-12 40-29 0-20-16-27-43-39l-15-6c-43-18-71-41-71-89 0-44 34-78 87-78 38 0 65 13 84 47l-46 30c-10-18-21-25-38-25-17 0-28 11-28 25 0 18 11 25 36 36l15 6c50 22 79 44 79 93 0 53-42 82-98 82-55 0-91-26-108-60"/> |
+ <polygon /> |
+ <path /> |
+ <polygon/> |
+ <path /> |
+ </svg> |
+ <ceci-definition> |
+ { |
+ "name": "Signal Transformer", |
+ "thumbnail": "./thumbnail.png", |
+ "description": "Transforms an incoming signal to a value you set and broadcasts it.", |
+ "broadcasts": { |
+ "transformedMessage": { |
+ "label": "Transformed Message" |
+ } |
+ }, |
+ "listeners": { |
+ "incomingMessage": { |
+ "label": "Incoming Message", |
+ "default" : true |
+ } |
+ }, |
+ "attributes": { |
+ "message": { |
+ "label": "Message", |
+ "editable": "Text", |
+ "default" : true |
+ } |
+ } |
+ } |
+ </ceci-definition> |
+ " entities! " < > |
+ <span>é</span> |
+ </template> |
+ <script> |
+ Polymer('x-import'); |
+ </script> |
+ <script type="application/fbs"> |
+ WHAT GOES HERE? |
+ </script> |
+</polymer-element> |