| Index: tests/html/custom/created_callback_test.dart
|
| diff --git a/tests/html/custom/created_callback_test.dart b/tests/html/custom/created_callback_test.dart
|
| index 2f3cd51872cff72e7be6ffd609deecd1c699b95c..2c34a37555f6bc0fcf009938dd23e3c47446790e 100644
|
| --- a/tests/html/custom/created_callback_test.dart
|
| +++ b/tests/html/custom/created_callback_test.dart
|
| @@ -13,7 +13,7 @@ class A extends HtmlElement {
|
|
|
| static int createdInvocations = 0;
|
|
|
| - void onCreated() {
|
| + void created() {
|
| createdInvocations++;
|
| }
|
| }
|
| @@ -30,7 +30,7 @@ class C extends HtmlElement {
|
| static int createdInvocations = 0;
|
| static var div;
|
|
|
| - void onCreated() {
|
| + void created() {
|
| createdInvocations++;
|
|
|
| if (this.id != 'u') {
|
|
|