Chromium Code Reviews| Index: pkg/polymer/test/visibility_test.html |
| diff --git a/pkg/polymer/test/unbind_test.html b/pkg/polymer/test/visibility_test.html |
| similarity index 58% |
| copy from pkg/polymer/test/unbind_test.html |
| copy to pkg/polymer/test/visibility_test.html |
| index 9d96a70a8e69c988a81c2d01acdd704b98c35cad..ddd630921020cbb2157fc588338114a7c91916b1 100644 |
| --- a/pkg/polymer/test/unbind_test.html |
| +++ b/pkg/polymer/test/visibility_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,15 @@ 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>visibility test</title> |
| <link rel="import" href="packages/polymer/polymer.html"> |
| <script src="/root_dart/tools/testing/dart/test_controller.js"></script> |
| </head> |
| <body> |
| - |
| - <x-test></x-test> |
| - |
| - <polymer-element name="x-test" attributes="bar"></polymer-element> |
| - |
| - <script type="application/dart" src="unbind_test.dart"></script> |
| + <template id="myTemplate" is="auto-binding-dart"> |
| + <span>{{value}}</span> |
| + <a href="popup.html" target="popup">Open Popup</a> |
|
Siggi Cherem (dart-lang)
2014/11/25 17:53:42
maybe rename popup.html to indicate what test uses
|
| + </template> |
| + <script type="application/dart" src="visibility_test.dart"></script> |
| </body> |
| </html> |