| 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 8fc6c54bccfcf00e392eb3ece09f810111dd9673..3f5408300decd225c2e724b2f4e8ca23abc9ae0c 100644
|
| --- a/samples/third_party/dromaeo/tests/dom-modify-html.dart
|
| +++ b/samples/third_party/dromaeo/tests/dom-modify-html.dart
|
| @@ -20,7 +20,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', () {
|
| @@ -41,8 +41,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>();
|
|
|