| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 import 'dart:async'; | |
| 6 import 'dart:html'; | |
| 7 import 'package:unittest/unittest.dart'; | |
| 8 import 'package:unittest/html_config.dart'; | |
| 9 import 'package:polymer/polymer.dart'; | |
| 10 | |
| 11 @CustomTag('x-foo') | |
| 12 class XFoo extends PolymerElement { | |
| 13 @observable String bar = "baz"; | |
| 14 | |
| 15 XFoo.created() : super.created(); | |
| 16 | |
| 17 @ComputedProperty('bar') | |
| 18 String get ignore => readValue(#bar); | |
| 19 } | |
| 20 | |
| 21 main() => initPolymer().run(() { | |
| 22 useHtmlConfiguration(); | |
| 23 | |
| 24 setUp(() => Polymer.onReady); | |
| 25 | |
| 26 test('can inject bound html fragments', () { | |
| 27 XFoo xFoo = querySelector('x-foo'); | |
| 28 DivElement injectDiv = xFoo.$['inject']; | |
| 29 xFoo.injectBoundHTML('<span>{{bar}}</span>', injectDiv); | |
| 30 expect(injectDiv.innerHtml, '<span>baz</span>'); | |
| 31 | |
| 32 xFoo.bar = 'bat'; | |
| 33 return new Future(() {}).then((_) { | |
| 34 expect(injectDiv.innerHtml, '<span>bat</span>'); | |
| 35 }); | |
| 36 }); | |
| 37 }); | |
| OLD | NEW |