| Index: pkg/polymer/test/unbind_test.html
|
| diff --git a/samples/tracker/web/index.html b/pkg/polymer/test/unbind_test.html
|
| similarity index 52%
|
| copy from samples/tracker/web/index.html
|
| copy to pkg/polymer/test/unbind_test.html
|
| index 8a46179d32b82093f68ff2f805fd10c66835af20..5644d0a034fa645714687de9f7b764de0f87bb72 100644
|
| --- a/samples/tracker/web/index.html
|
| +++ b/pkg/polymer/test/unbind_test.html
|
| @@ -1,22 +1,24 @@
|
| -<!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
|
| BSD-style license that can be found in the LICENSE file.
|
| -->
|
| -
|
| <html>
|
| <head>
|
| - <meta charset="utf-8">
|
| - <title>Tracker</title>
|
| -
|
| - <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| - <link rel="stylesheet" href="index.css">
|
| -
|
| - <link rel="import" href="tracker_app.html">
|
| + <title>unbind</title>
|
| <script src="packages/polymer/boot.js"></script>
|
| + <script src="packages/unittest/test_controller.js"></script>
|
| </head>
|
| <body>
|
| - <tracker-app></tracker-app>
|
| +
|
| + <x-test></x-test>
|
| +
|
| + <polymer-element name="x-test" attributes="bar">
|
| + <template>
|
| + </template>
|
| + </polymer-element>
|
| +
|
| + <script type="application/dart" src="unbind_test.dart"></script>
|
| </body>
|
| </html>
|
|
|