| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <!--polymer-test: this comment is needed for test_suite.dart--> | 3 <!--polymer-test: this comment is needed for test_suite.dart--> |
| 4 <head> | 4 <head> |
| 5 <title>property to attribute reflection with bind</title> | 5 <title>force ready</title> |
| 6 <script src="packages/web_components/platform.js"></script> | 6 <script src="packages/web_components/platform.js"></script> |
| 7 <script src="packages/web_components/dart_support.js"></script> | 7 <script src="packages/web_components/dart_support.js"></script> |
| 8 <link rel="import" href="packages/polymer/polymer.html"> | 8 <link rel="import" href="packages/polymer/polymer.html"> |
| 9 <script src="/root_dart/tools/testing/dart/test_controller.js"></script> | 9 <script src="/root_dart/tools/testing/dart/test_controller.js"></script> |
| 10 </head> | 10 </head> |
| 11 | 11 |
| 12 <body> | 12 <body> |
| 13 <x-foo foo="mee" bar="too" count=3></x-foo> | 13 <polymer-element name="x-foo"> |
| 14 | 14 <template> |
| 15 <polymer-element name="x-foo" attributes="foo bar count"> | 15 <div id="inject"></div> |
| 16 <template>{{ fooBar }}:{{ fooBarCounted }}</template> | 16 </template> |
| 17 <script type="application/dart" src="computed_properties_test.dart"></scri
pt> | |
| 18 </polymer-element> | 17 </polymer-element> |
| 18 <x-foo></x-foo> |
| 19 <script type="application/dart" src="inject_bound_html_test.dart"></script> |
| 19 </body> | 20 </body> |
| 20 </html> | 21 </html> |
| OLD | NEW |