| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 2 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 3 for details. All rights reserved. Use of this source code is governed by a | 3 for details. All rights reserved. Use of this source code is governed by a |
| 4 BSD-style license that can be found in the LICENSE file. | 4 BSD-style license that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <!doctype html> | 6 <!doctype html> |
| 7 <html> | 7 <html> |
| 8 <!--polymer-test: this comment is needed for test_suite.dart--> | 8 <!--polymer-test: this comment is needed for test_suite.dart--> |
| 9 <head> | 9 <head> |
| 10 <title>template attribute test</title> | 10 <title>template attribute test</title> |
| 11 <script src="packages/web_components/platform.js"></script> | |
| 12 <script src="packages/web_components/dart_support.js"></script> | |
| 13 <link rel="import" href="packages/polymer/polymer.html"> | 11 <link rel="import" href="packages/polymer/polymer.html"> |
| 14 <script src="/root_dart/tools/testing/dart/test_controller.js"></script> | 12 <script src="/root_dart/tools/testing/dart/test_controller.js"></script> |
| 15 <link rel="import" href="template_attr_template_test_import.html"> | 13 <link rel="import" href="template_attr_template_test_import.html"> |
| 16 </head> | 14 </head> |
| 17 <body unresolved> | 15 <body unresolved> |
| 18 | 16 |
| 19 <polymer-element name="decoration-test2" extends="decoration-test"> | 17 <polymer-element name="decoration-test2" extends="decoration-test"> |
| 20 <template> | 18 <template> |
| 21 <table> | 19 <table> |
| 22 <thead> | 20 <thead> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 37 | 35 |
| 38 <decoration-test></decoration-test> | 36 <decoration-test></decoration-test> |
| 39 <br> | 37 <br> |
| 40 <decoration-test2></decoration-test2> | 38 <decoration-test2></decoration-test2> |
| 41 | 39 |
| 42 <script type="application/dart" src="template_attr_template_test.dart"> | 40 <script type="application/dart" src="template_attr_template_test.dart"> |
| 43 </script> | 41 </script> |
| 44 | 42 |
| 45 </body> | 43 </body> |
| 46 </html> | 44 </html> |
| OLD | NEW |