| Index: samples/third_party/dromaeo/tests/dom-traverse-html.dart
|
| diff --git a/samples/third_party/dromaeo/tests/dom-traverse-html.dart b/samples/third_party/dromaeo/tests/dom-traverse-html.dart
|
| index 9472a61c5735f71e112a063994cd839c93746289..39f370d49ac07fb2dd5dec19907b17b059da526a 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-traverse-html.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-traverse-html.dart
|
| @@ -32,7 +32,7 @@ void main() {
|
|
|
| final div = new Element.tag('div');
|
| div.innerHtml = html;
|
| - document.body.$dom_appendChild(div);
|
| + document.body.append(div);
|
| })
|
| .test('firstChild', () {
|
| final nodes = document.body.$dom_childNodes;
|
|
|