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

Unified Diff: tests/html/custom/constructor_calls_created_synchronously_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/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 edd689ad8bd75a69cf313898491b2f47b5df1b44..2238df6e2d67feb90e4ab107f06574d481984fe5 100644
--- a/tests/html/custom/constructor_calls_created_synchronously_test.dart
+++ b/tests/html/custom/constructor_calls_created_synchronously_test.dart
@@ -7,14 +7,16 @@ import 'package:unittest/unittest.dart';
import 'package:unittest/html_config.dart';
import 'dart:html';
import '../utils.dart';
+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 created() {
+ void createdCallback() {
ncallbacks++;
}
}

Powered by Google App Engine
This is Rietveld 408576698