| Index: samples/third_party/dromaeo/tests/dom-traverse-htmlidiomatic.dart
|
| diff --git a/samples/third_party/dromaeo/tests/dom-traverse-htmlidiomatic.dart b/samples/third_party/dromaeo/tests/dom-traverse-htmlidiomatic.dart
|
| index d15635756279f8ab502999ab5a71784974f3f663..3d515e25ba56b7d27d6ba3befe435b782fbb3480 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-traverse-htmlidiomatic.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-traverse-htmlidiomatic.dart
|
| @@ -11,7 +11,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(() {
|
| @@ -27,7 +27,7 @@ void main() {
|
| });
|
|
|
| final div = new Element.tag('div');
|
| - div.innerHTML = html;
|
| + div.innerHtml = html;
|
| document.body.nodes.add(div);
|
| })
|
| .test('firstChild', () {
|
|
|