Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: node_modules/vulcanize/test/html/comments.html

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « node_modules/vulcanize/test/html/broken-js.html ('k') | node_modules/vulcanize/test/html/default.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « node_modules/vulcanize/test/html/broken-js.html ('k') | node_modules/vulcanize/test/html/default.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698