| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:html'; | 5 import 'dart:html'; |
| 6 import 'package:unittest/unittest.dart'; | 6 import 'package:unittest/unittest.dart'; |
| 7 import 'package:unittest/html_config.dart'; | 7 import 'package:unittest/html_config.dart'; |
| 8 import 'package:polymer/polymer.dart'; | 8 import 'package:polymer/polymer.dart'; |
| 9 | 9 |
| 10 // Note: we use @CustomTag to make this type reflectable. | 10 // Note: we use @CustomTag to make this type reflectable. |
| 11 @CustomTag('my-element') | 11 @CustomTag('my-element') |
| 12 class MyElement extends PolymerElement { | 12 class MyElement extends PolymerElement { |
| 13 MyElement.created() : super.created(); | 13 MyElement.created() : super.created(); |
| 14 | 14 |
| 15 // This is here so that [attributes] can be read via mirrors in polymer | 15 // This is here so that [attributes] can be read via mirrors in polymer |
| 16 // expressions (@CustomTag in this class makes the attribute reflectable). | 16 // expressions (@CustomTag in this class makes the attribute reflectable). |
| 17 get attributes => super.attributes; | 17 get attributes => super.attributes; |
| 18 } | 18 } |
| 19 | 19 |
| 20 @initMethod |
| 20 main() { | 21 main() { |
| 21 initPolymer(); | |
| 22 useHtmlConfiguration(); | 22 useHtmlConfiguration(); |
| 23 | 23 |
| 24 setUp(() => Polymer.onReady); | 24 setUp(() => Polymer.onReady); |
| 25 | 25 |
| 26 test('attributes were deserialized', () { | 26 test('attributes were deserialized', () { |
| 27 var elem = querySelector('my-element'); | 27 var elem = querySelector('my-element'); |
| 28 | 28 |
| 29 expect(elem.attributes, {'foo': '123', 'bar': 'hi', 'baz': 'world'}, | 29 expect(elem.attributes, {'foo': '123', 'bar': 'hi', 'baz': 'world'}, |
| 30 reason: 'attributes should be copied to instance'); | 30 reason: 'attributes should be copied to instance'); |
| 31 | 31 |
| 32 var text = elem.shadowRoot.text; | 32 var text = elem.shadowRoot.text; |
| 33 // Collapse adjacent whitespace like a browser would: | 33 // Collapse adjacent whitespace like a browser would: |
| 34 text = text.replaceAll('\n', ' ').replaceAll(new RegExp(r'\s+'), ' '); | 34 text = text.replaceAll('\n', ' ').replaceAll(new RegExp(r'\s+'), ' '); |
| 35 | 35 |
| 36 expect(text, " foo: 123 bar: hi baz: world ", | 36 expect(text, " foo: 123 bar: hi baz: world ", |
| 37 reason: 'text should match expected HTML template'); | 37 reason: 'text should match expected HTML template'); |
| 38 }); | 38 }); |
| 39 } | 39 } |
| OLD | NEW |