Chromium Code Reviews| Index: samples/third_party/dromaeo/tests/dom-modify-html.dart |
| diff --git a/samples/third_party/dromaeo/tests/dom-modify-html.dart b/samples/third_party/dromaeo/tests/dom-modify-html.dart |
| index cff2da11c19b253c3584263975a5ed68136f3b77..7599b060bdc4d482e9ce05562343d5009181255d 100644 |
| --- a/samples/third_party/dromaeo/tests/dom-modify-html.dart |
| +++ b/samples/third_party/dromaeo/tests/dom-modify-html.dart |
| @@ -65,7 +65,7 @@ void main() { |
| }) |
| .test('insertBefore', () { |
| for (int i = 0; i < elems.length; i++) |
| - document.body.insertBefore(elems[i], document.body.$dom_firstChild); |
| + document.body.insertBefore(elems[i], document.body.firstChild); |
|
vsm
2013/07/26 23:22:15
Is this API supposed to be back? Or did I acciden
Emily Fortuna
2013/07/26 23:30:21
Yeah this API got re-exposed a while back (example
|
| }) |
| .end(); |
| } |