| Index: tests/html/custom/created_callback_test.dart
|
| diff --git a/tests/html/custom/created_callback_test.dart b/tests/html/custom/created_callback_test.dart
|
| index 2c34a37555f6bc0fcf009938dd23e3c47446790e..1265b51840cff73d644ea868644899baf87b5501 100644
|
| --- a/tests/html/custom/created_callback_test.dart
|
| +++ b/tests/html/custom/created_callback_test.dart
|
| @@ -6,6 +6,7 @@ library created_callback_test;
|
| import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_config.dart';
|
| import 'dart:html';
|
| +import '../utils.dart';
|
|
|
| class A extends HtmlElement {
|
| static final tag = 'x-a';
|
| @@ -71,12 +72,12 @@ main() {
|
|
|
| var div = new DivElement();
|
| C.div = div;
|
| - div.innerHtml = """
|
| + div.setInnerHtml("""
|
| <x-c id="t"></x-c>
|
| <x-b id="u"></x-b>
|
| <x-c id="v"></x-c>
|
| <x-b id="w"></x-b>
|
| -""";
|
| +""", treeSanitizer: new NullTreeSanitizer());
|
|
|
| expect(C.createdInvocations, 2);
|
| expect(div.query('#w') is B, isTrue);
|
|
|