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

Unified Diff: pkg/polymer/test/two_way_bind_test.html

Issue 794473002: Delete polymer from the Dart repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | « pkg/polymer/test/two_way_bind_test.dart ('k') | pkg/polymer/test/unbind_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/two_way_bind_test.html
diff --git a/pkg/polymer/test/two_way_bind_test.html b/pkg/polymer/test/two_way_bind_test.html
deleted file mode 100644
index 2b68884e8c4f13deef0a7a795c0564f7c80bcc9e..0000000000000000000000000000000000000000
--- a/pkg/polymer/test/two_way_bind_test.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<html>
- <!--polymer-test: this comment is needed for test_suite.dart-->
- <head>
- <title>two way bindings</title>
- <link rel="import" href="packages/polymer/polymer.html">
- <script src="/root_dart/tools/testing/dart/test_controller.js"></script>
- </head>
-
- <body>
- <polymer-element name="inner-element">
- <template>
- <h1>Hello from the child</h1>
- <p>The number is {{number}}</p>
- <p>The boolean is {{boolean}}</p>
- <p>The string is {{string}}</p>
- </template>
- </polymer-element>
-
- <polymer-element name="outer-element">
- <template>
- <h1>Hello from the custom element</h1>
- <p>The number is {{number}}</p>
- <p>The boolean is {{boolean}}</p>
- <p>The string is {{string}}</p>
- <p>
- <inner-element id="child" number="{{number}}"
- boolean="{{boolean}}" string="{{string}}"></inner-element>
- </p>
- </template>
- </polymer-element>
-
- <outer-element></outer-element>
-
- <script type="application/dart" src="two_way_bind_test.dart"></script>
- </body>
-</html>
« no previous file with comments | « pkg/polymer/test/two_way_bind_test.dart ('k') | pkg/polymer/test/unbind_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698