Index: tests/html/custom_elements_test.dart |
diff --git a/tests/html/custom_elements_test.dart b/tests/html/custom_elements_test.dart |
index 3ad83a1b9ea007a48f7a640c39e7be98a690e67c..718898ca7b9bd84575b54c63b6f1b629f1fc6d23 100644 |
--- a/tests/html/custom_elements_test.dart |
+++ b/tests/html/custom_elements_test.dart |
@@ -19,8 +19,10 @@ class CustomMixin { |
class CustomType extends HtmlElement with CustomMixin{ |
factory CustomType() => null; |
+ CustomType.created(): super.created(); |
+ |
bool createdCalled; // = false; |
- void created() { |
+ void createdCallback() { |
createdCalled = true; |
customCreatedCount++; |
} |