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

Unified Diff: tests/html/custom/attribute_changed_callback_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/attribute_changed_callback_test.dart
diff --git a/tests/html/custom/attribute_changed_callback_test.dart b/tests/html/custom/attribute_changed_callback_test.dart
index 955399f3abe7dad56152e43df0a8310e4abe4533..7a10e1d5d6c5340bdf33997c0dd5c5f83d7f3c87 100644
--- a/tests/html/custom/attribute_changed_callback_test.dart
+++ b/tests/html/custom/attribute_changed_callback_test.dart
@@ -10,6 +10,7 @@ import 'dart:html';
class A extends HtmlElement {
static final tag = 'x-a';
factory A() => new Element.tag(tag);
+ A.created() : super.created();
static var attributeChangedInvocations = 0;
@@ -21,6 +22,7 @@ class A extends HtmlElement {
class B extends HtmlElement {
static final tag = 'x-b';
factory B() => new Element.tag(tag);
+ B.created() : super.created();
static var invocations = [];

Powered by Google App Engine
This is Rietveld 408576698