| Index: dart/tests/try/paste_content_rewriting_test.dart
|
| diff --git a/dart/tests/try/paste_content_rewriting_test.dart b/dart/tests/try/paste_content_rewriting_test.dart
|
| index cfe9418a1559383402c91bf4e3ebec6560483119..e865233a19e8b2c6b4f05d3c6470b735f4793f40 100644
|
| --- a/dart/tests/try/paste_content_rewriting_test.dart
|
| +++ b/dart/tests/try/paste_content_rewriting_test.dart
|
| @@ -36,5 +36,13 @@ main() {
|
| asyncTest(() => new Future(() {
|
| print('Welcome to the future');
|
| Expect.stringEquals('//...\n}\n', inputPre.text);
|
| + }).then((_) {
|
| + inputPre.innerHtml = 'someText';
|
| + return new Future(() {
|
| + Expect.stringEquals('someText\n', inputPre.text);
|
| +
|
| + // Clear the DOM to work around a bug in test.dart.
|
| + document.body.nodes.clear();
|
| + });
|
| }));
|
| }
|
|
|