| Index: samples/third_party/dromaeo/tests/dom-query-htmlidiomatic.dart
|
| diff --git a/samples/third_party/dromaeo/tests/dom-query-htmlidiomatic.dart b/samples/third_party/dromaeo/tests/dom-query-htmlidiomatic.dart
|
| index dff4d23568cfbc6f90e2145f3bcaaa2bf99f8726..225f1355741f32be97ef1ca71012eb80725a64d1 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-query-htmlidiomatic.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-query-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-query')
|
| .prep(() {
|
| @@ -26,7 +26,7 @@ void main() {
|
| return 'class="foo test${num} bar"';
|
| });
|
| final div = new Element.tag('div');
|
| - div.innerHTML = html;
|
| + div.innerHtml = html;
|
| document.body.nodes.add(div);
|
| })
|
| .test('getElementById', () {
|
|
|