Chromium Code Reviews| 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..c21cb756b211b54e688bac5e97fadccdb05b4563 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(); |
|
sra1
2013/10/01 02:37:04
Style elsewhere is a space precedes ":"
blois
2013/10/01 16:36:19
Done.
|
| 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 = []; |