| 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>
|
|
|