| 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 c9d32a3134b914c9d5bb9cae84a57a5659c489d1..d50f8ab5a2b655aa628735e0b423d0fc448ef6cc 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-traverse-html.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-traverse-html.dart
|
| @@ -12,7 +12,7 @@ void main() {
|
| // Try to force real results.
|
| var ret;
|
|
|
| - String html = document.body.innerHTML;
|
| + String html = document.body.innerHtml;
|
|
|
| new Suite(window, 'dom-traverse')
|
| .prep(() {
|
| @@ -28,7 +28,7 @@ void main() {
|
| });
|
|
|
| final div = new Element.tag('div');
|
| - div.innerHTML = html;
|
| + div.innerHtml = html;
|
| document.body.$dom_appendChild(div);
|
| })
|
| .test('firstChild', () {
|
|
|