OLD | NEW |
(Empty) | |
| 1 <!doctype html> |
| 2 <!-- |
| 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 |
| 5 BSD-style license that can be found in the LICENSE file. |
| 6 --> |
| 7 <html> |
| 8 <head> |
| 9 |
| 10 <title>property to attribute reflection</title> |
| 11 <link rel="import" href="packages/polymer/polymer.html"> |
| 12 <script src="packages/unittest/test_controller.js"></script> |
| 13 </head> |
| 14 <body> |
| 15 <x-basic></x-basic> |
| 16 <polymer-element name="x-basic" attributes="nog" noscript> |
| 17 </polymer-element> |
| 18 |
| 19 <x-attr-publish></x-attr-publish> |
| 20 <polymer-element name="x-attr-publish" attributes="nog"> |
| 21 </polymer-element> |
| 22 |
| 23 <x-foo></x-foo> |
| 24 <polymer-element name="x-foo"></polymer-element> |
| 25 |
| 26 <x-bar></x-bar> |
| 27 <polymer-element name="x-bar" extends="x-foo"></polymer-element> |
| 28 |
| 29 <x-zot></x-zot> |
| 30 <polymer-element name="x-zot" extends="x-bar"></polymer-element> |
| 31 |
| 32 <x-compose></x-compose> |
| 33 <polymer-element name="x-compose"> |
| 34 <template> |
| 35 <x-bar id="bar" zim="{{zim}}"></x-bar> |
| 36 </template> |
| 37 </polymer-element> |
| 38 |
| 39 <script type="application/dart" src="prop_attr_reflection_test.dart"></script> |
| 40 </body> |
| 41 </html> |
OLD | NEW |