| Index: tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| diff --git a/tests/html/custom/constructor_calls_created_synchronously_test.dart b/tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| index 932f760072672b3fa415342c41cac7e399a07c1f..f9f242d8a7dd7b43f671ba7c646391c4aaabfc9f 100644
|
| --- a/tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| +++ b/tests/html/custom/constructor_calls_created_synchronously_test.dart
|
| @@ -12,13 +12,11 @@ import 'dart:mirrors';
|
| class A extends HtmlElement {
|
| static final tag = 'x-a';
|
| factory A() => new Element.tag(tag);
|
| - A.created() : super.created();
|
| -
|
| - static int ncallbacks = 0;
|
| -
|
| - void createdCallback() {
|
| + A.created() : super.created() {
|
| ncallbacks++;
|
| }
|
| +
|
| + static int ncallbacks = 0;
|
| }
|
|
|
| main() {
|
|
|