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

Unified Diff: tests/html/custom_elements_test.dart

Issue 24653006: Adding Element.created constructor (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 side-by-side diff with in-line comments
Download patch
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++;
}

Powered by Google App Engine
This is Rietveld 408576698