| Index: test/data/input/dom_accessor_binding2_test.html
|
| diff --git a/test/data/input/dom_accessor_binding2_test.html b/test/data/input/dom_accessor_binding2_test.html
|
| index 00031a016bf128b51c046bb78d5c9321ba54bf30..dc7c1bb39717962f548fab22439fc8398468d12e 100644
|
| --- a/test/data/input/dom_accessor_binding2_test.html
|
| +++ b/test/data/input/dom_accessor_binding2_test.html
|
| @@ -20,12 +20,12 @@
|
| main() {
|
| window.on.load.add((e) {
|
| var input = query('input');
|
| - document.body.addText('expected input.checked to be false, got '
|
| - '${input.checked}');
|
| + document.body.appendText('expected input.checked to be false, got '
|
| + '${input.checked}');
|
| boolVar = true;
|
| dispatch();
|
| - document.body.addText('expected input.checked to be true, got '
|
| - '${input.checked}');
|
| + document.body.appendText('expected input.checked to be true, got '
|
| + '${input.checked}');
|
| window.setTimeout(() => window.postMessage('done', '*'), 0);
|
| });
|
| }
|
|
|