Index: node_modules/vulcanize/test/html/comments.html |
diff --git a/bower_components/sampler-scaffold/demos/radio.html b/node_modules/vulcanize/test/html/comments.html |
similarity index 51% |
copy from bower_components/sampler-scaffold/demos/radio.html |
copy to node_modules/vulcanize/test/html/comments.html |
index b4593191094e492afa0ee2a2298f1e4bb7d138ef..3e70e572cbeb37dbbc3cd0a34f53af76ba552790 100644 |
--- a/bower_components/sampler-scaffold/demos/radio.html |
+++ b/node_modules/vulcanize/test/html/comments.html |
@@ -1,3 +1,4 @@ |
+<!DOCTYPE html> |
<!-- |
@license |
Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
@@ -7,14 +8,33 @@ |
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 |
--> |
-<!doctype html> |
-<html> |
+<html lang="en"> |
<head> |
+ <meta charset="UTF-8"> |
+ <title>Commented</title> |
</head> |
- |
<body> |
+ <!-- comment 1: comment element --> |
+ <polymer-element name="x-comment" attributes=""> |
+ |
+ <template> |
+ <!-- comment 2: style for the host --> |
+ <style> |
+ /* comment 3: blue border is the best */ |
+ :host { |
+ border: 2px solid blue; |
+ } |
+ </style> |
+ |
+ </template> |
- <input type="radio"> |
+ <!-- comment 4: script for registering --> |
+ <script> |
+ Polymer({ |
+ // comment 5: put some stuff here |
+ }); |
+ </script> |
+ </polymer-element> |
</body> |
</html> |