| Index: samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
|
| diff --git a/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart b/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
|
| index 4765f2d61d5f21b2f9a4569f80db268227072b9a..b2b87bc6327e33b33395917a0fe757c6502e3e92 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-modify-htmlidiomatic.dart
|
| @@ -19,7 +19,7 @@ void main() {
|
| // Try to force real results.
|
| var ret;
|
|
|
| - final htmlstr = document.body.innerHTML;
|
| + final htmlstr = document.body.innerHtml;
|
|
|
| new Suite(window, 'dom-modify')
|
| .test('createElement', () {
|
| @@ -40,8 +40,8 @@ void main() {
|
| ret = new Text('${str}5');
|
| }
|
| })
|
| - .test('innerHTML', () {
|
| - document.body.innerHTML = htmlstr;
|
| + .test('innerHtml', () {
|
| + document.body.innerHtml = htmlstr;
|
| })
|
| .prep(() {
|
| elems = new List<Node>();
|
|
|