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

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

Issue 723393003: update to polymer js 0.5.1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: little bit of cleanup Created 6 years, 1 month 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
Index: pkg/polymer/test/import_test.html
diff --git a/pkg/polymer/test/unbind_test.html b/pkg/polymer/test/import_test.html
similarity index 59%
copy from pkg/polymer/test/unbind_test.html
copy to pkg/polymer/test/import_test.html
index 9d96a70a8e69c988a81c2d01acdd704b98c35cad..2cb1af4ab4cd0a30a406c1aef8675fbedc3346db 100644
--- a/pkg/polymer/test/unbind_test.html
+++ b/pkg/polymer/test/import_test.html
@@ -1,4 +1,4 @@
-<!doctype html>
+<!DOCTYPE html>
<!--
Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
@@ -7,18 +7,20 @@ BSD-style license that can be found in the LICENSE file.
<html>
<!--polymer-test: this comment is needed for test_suite.dart-->
<head>
- <title>unbind</title>
- <script src="packages/web_components/platform.js"></script>
- <script src="packages/web_components/dart_support.js"></script>
+ <title>Polymer.import test</title>
<link rel="import" href="packages/polymer/polymer.html">
<script src="/root_dart/tools/testing/dart/test_controller.js"></script>
</head>
<body>
+ <x-foo></x-foo>
+ <hr>
- <x-test></x-test>
+ <x-bar></x-bar>
- <polymer-element name="x-test" attributes="bar"></polymer-element>
+ <template id="myTemplate">
+ <link rel="import" href="element_import/import_b.html">
+ </template>
- <script type="application/dart" src="unbind_test.dart"></script>
+ <script type="application/dart" src="import_test.dart"></script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698