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:polymer/polymer.dart'; | 6 import 'package:polymer/polymer.dart'; |
7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
8 import 'package:unittest/html_config.dart'; | 8 import 'package:unittest/html_config.dart'; |
9 | 9 |
10 @CustomTag('x-html') | 10 @CustomTag('x-html') |
(...skipping 22 matching lines...) Expand all Loading... |
33 XPolymerElement.created() : super.created(); | 33 XPolymerElement.created() : super.created(); |
34 } | 34 } |
35 | 35 |
36 /// Dart-specific test: | 36 /// Dart-specific test: |
37 /// This element is registered from code without an associated polymer-element. | 37 /// This element is registered from code without an associated polymer-element. |
38 class XButtonElement extends ButtonElement with Polymer, Observable { | 38 class XButtonElement extends ButtonElement with Polymer, Observable { |
39 XButtonElement.created() : super.created(); | 39 XButtonElement.created() : super.created(); |
40 } | 40 } |
41 | 41 |
42 | 42 |
43 @initMethod | 43 main() => initPolymer().run(() { |
44 main() { | |
45 useHtmlConfiguration(); | 44 useHtmlConfiguration(); |
46 | 45 |
47 setUp(() => Polymer.onReady); | 46 setUp(() => Polymer.onReady); |
48 | 47 |
49 test('elements upgraded', () { | 48 test('elements upgraded', () { |
50 expect(querySelector('x-html') is XHtmlElement, isTrue); | 49 expect(querySelector('x-html') is XHtmlElement, isTrue); |
51 expect(querySelector('x-html-two') is XHtml2Element, isTrue); | 50 expect(querySelector('x-html-two') is XHtml2Element, isTrue); |
52 expect(querySelector('#x-div') is XDivElement, isTrue); | 51 expect(querySelector('#x-div') is XDivElement, isTrue); |
53 expect(querySelector('#x-div-two') is XDiv2Element, isTrue); | 52 expect(querySelector('#x-div-two') is XDiv2Element, isTrue); |
54 }); | 53 }); |
(...skipping 16 matching lines...) Expand all Loading... |
71 | 70 |
72 test('type extension', () { | 71 test('type extension', () { |
73 Polymer.registerSync('x-button', XButtonElement, extendsTag: 'button'); | 72 Polymer.registerSync('x-button', XButtonElement, extendsTag: 'button'); |
74 | 73 |
75 expect(document.createElement('button', 'x-button') is XButtonElement, | 74 expect(document.createElement('button', 'x-button') is XButtonElement, |
76 isTrue, reason: 'should have been registered'); | 75 isTrue, reason: 'should have been registered'); |
77 expect(document.querySelector('[is=x-button]') is XButtonElement, isTrue, | 76 expect(document.querySelector('[is=x-button]') is XButtonElement, isTrue, |
78 reason: 'elements on page should be upgraded'); | 77 reason: 'elements on page should be upgraded'); |
79 }); | 78 }); |
80 }); | 79 }); |
81 } | 80 }); |
OLD | NEW |