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="attributes_test.dart"> | 10 <link rel="x-dart-test" href="attributes_test.dart"> |
6 <!--<script type="application/dart" src="attributes_test.dart"></script>--> | 11 <!--<script type="application/dart" src="attributes_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 <attributes-test my-string="string" my-int="1" my-double="1.0" my-num="2" | 15 <attributes-test my-string="string" my-int="1" my-double="1.0" my-num="2" |
11 my-bool my-map='{"hello": "world"}' | 16 my-bool my-map='{"hello": "world"}' |
12 my-list='["hello", "world"]' | 17 my-list='["hello", "world"]' |
13 my-date-time="July 18, 1987"></attributes-test> | 18 my-date-time="July 18, 1987"></attributes-test> |
14 <serialize-attributes-test my-string="string" my-int="1" my-double="1.0" my-
num="2" | 19 <serialize-attributes-test my-string="string" my-int="1" my-double="1.0" my-
num="2" |
15 my-bool my-map='{"hello": "world"}' | 20 my-bool my-map='{"hello": "world"}' |
16 my-list='["hello", "world"]' | 21 my-list='["hello", "world"]' |
17 my-date-time="July 18, 1987" | 22 my-date-time="July 18, 1987" |
18 my-foobar="bar"></serialize-attributes-test> | 23 my-foobar="bar"></serialize-attributes-test> |
19 </body> | 24 </body> |
20 </html> | 25 </html> |
OLD | NEW |