OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- |
| 3 Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 6 --> |
2 <html> | 7 <html> |
3 <head> | 8 <head> |
4 <script src="packages/web_components/webcomponents.min.js"></script> | 9 <script src="packages/web_components/webcomponents.min.js"></script> |
5 <link rel="x-dart-test" href="property_binding_test.dart"> | 10 <link rel="x-dart-test" href="property_binding_test.dart"> |
6 <!--<script type="application/dart" src="property_binding_test.dart"></script>
--> | 11 <!--<script type="application/dart" src="property_binding_test.dart"></script>
--> |
7 <script src="packages/test/dart.js"></script> | 12 <script src="packages/test/dart.js"></script> |
8 </head> | 13 </head> |
9 <body> | 14 <body> |
10 <dom-module id="parent-element"> | 15 <dom-module id="parent-element"> |
11 <template> | 16 <template> |
12 <child-element id="child" model="{{model}}"></child-element> | 17 <child-element id="child" model="{{model}}"></child-element> |
13 </template> | 18 </template> |
14 </dom-module> | 19 </dom-module> |
15 <dom-module id="child-element"> | 20 <dom-module id="child-element"> |
16 <template> | 21 <template> |
17 <grandchild-element id="grandchild" value="{{model.value}}"> | 22 <grandchild-element id="grandchild" value="{{model.value}}"> |
18 </grandchild-element> | 23 </grandchild-element> |
19 </template> | 24 </template> |
20 </dom-module> | 25 </dom-module> |
21 </body> | 26 </body> |
22 </html> | 27 </html> |
OLD | NEW |