| Index: test/data/input/iterate_attribute_test.html
|
| diff --git a/test/data/input/iterate_attribute_test.html b/test/data/input/iterate_attribute_test.html
|
| index eae581624f3767a6bd63b4bf4e40f449f23f1338..b8b3fdef873b99e34d0065f46da1f23c1537751b 100644
|
| --- a/test/data/input/iterate_attribute_test.html
|
| +++ b/test/data/input/iterate_attribute_test.html
|
| @@ -23,12 +23,12 @@ BSD-style license that can be found in the LICENSE file.
|
| var list = <String>['a', 'b', 'c', 'e'];
|
| main() {
|
| window.setTimeout(() {
|
| - expect(document.query("#test").innerHTML, equalsIgnoringWhitespace(
|
| + expect(document.query("#test").innerHtml, equalsIgnoringWhitespace(
|
| '<span>a</span> <span>b</span> <span>c</span> <span>e</span>'));
|
| list[3] = 'd';
|
| dispatch();
|
| window.setTimeout(() {
|
| - expect(document.query("#test").innerHTML, equalsIgnoringWhitespace(
|
| + expect(document.query("#test").innerHtml, equalsIgnoringWhitespace(
|
| '<span>a</span> <span>b</span> <span>c</span> <span>d</span>'));
|
| window.setTimeout(() => window.postMessage('done', '*'), 0);
|
| }, 0);
|
|
|