| Index: samples/third_party/dromaeo/tests/dom-query-html.dart
|
| diff --git a/samples/third_party/dromaeo/tests/dom-query-html.dart b/samples/third_party/dromaeo/tests/dom-query-html.dart
|
| index 6281d025a2171cc893b23505caf2899dca913020..3df80969393336904aba0f86e6ca5249f9fe9b0b 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-query-html.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-query-html.dart
|
| @@ -29,7 +29,7 @@ void main() {
|
| });
|
| final div = new Element.tag('div');
|
| div.innerHtml = html;
|
| - document.body.$dom_appendChild(div);
|
| + document.body.append(div);
|
| })
|
| .test('getElementById', () {
|
| for (int i = 0; i < num * 30; i++) {
|
|
|