Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: tests/html/custom/constructor_calls_created_synchronously_test.dart

Issue 23498053: Revert "Revert "Dart2js support for custom element lifecycle events"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 library constructor_calls_created_synchronously_test; 5 library constructor_calls_created_synchronously_test;
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 'dart:html'; 8 import 'dart:html';
9 import '../utils.dart';
9 10
10 class A extends HtmlElement { 11 class A extends HtmlElement {
11 static final tag = 'x-a'; 12 static final tag = 'x-a';
12 factory A() => new Element.tag(tag); 13 factory A() => new Element.tag(tag);
13 14
14 static int ncallbacks = 0; 15 static int ncallbacks = 0;
15 16
16 void created() { 17 void created() {
17 ncallbacks++; 18 ncallbacks++;
18 } 19 }
19 } 20 }
20 21
21 loadPolyfills() {
22 if (!document.supportsRegister) {
23 // Cache blocker is a workaround for:
24 // https://code.google.com/p/dart/issues/detail?id=11834
25 var cacheBlocker = new DateTime.now().millisecondsSinceEpoch;
26 return HttpRequest.getString('/root_dart/pkg/custom_element/lib/'
27 'custom-elements.debug.js?cacheBlock=$cacheBlocker').then((code) {
28 document.head.children.add(new ScriptElement()..text = code);
29 });
30 }
31 }
32
33 main() { 22 main() {
34 useHtmlConfiguration(); 23 useHtmlConfiguration();
35 24
36 // Adapted from Blink's 25 // Adapted from Blink's
37 // fast/dom/custom/constructor-calls-created-synchronously test. 26 // fast/dom/custom/constructor-calls-created-synchronously test.
38 27
39 setUp(loadPolyfills); 28 setUp(loadPolyfills);
40 29
41 test('createdCallback', () { 30 test('createdCallback', () {
42 document.register(A.tag, A); 31 document.register(A.tag, A);
43 var x = new A(); 32 var x = new A();
44 expect(A.ncallbacks, 1); 33 expect(A.ncallbacks, 1);
45 }); 34 });
46 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698