| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 for details. All rights reserved. Use of this source code is governed by a | 4 for details. All rights reserved. Use of this source code is governed by a |
| 5 BSD-style license that can be found in the LICENSE file. | 5 BSD-style license that can be found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | |
| 8 <html> | 7 <html> |
| 9 <head> | 8 <head> |
| 10 <meta charset="utf-8"> | 9 <title>unbind</title> |
| 11 <title>Tracker</title> | |
| 12 | |
| 13 <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| 14 <link rel="stylesheet" href="index.css"> | |
| 15 | |
| 16 <link rel="import" href="tracker_app.html"> | |
| 17 <script src="packages/polymer/boot.js"></script> | 10 <script src="packages/polymer/boot.js"></script> |
| 11 <script src="packages/unittest/test_controller.js"></script> |
| 18 </head> | 12 </head> |
| 19 <body> | 13 <body> |
| 20 <tracker-app></tracker-app> | 14 |
| 15 <x-test></x-test> |
| 16 |
| 17 <polymer-element name="x-test" attributes="bar"> |
| 18 <template> |
| 19 </template> |
| 20 </polymer-element> |
| 21 |
| 22 <script type="application/dart" src="unbind_test.dart"></script> |
| 21 </body> | 23 </body> |
| 22 </html> | 24 </html> |
| OLD | NEW |