| Index: test/data/input/watch_global_var_test.html
|
| diff --git a/test/data/input/watch_global_var_test.html b/test/data/input/watch_global_var_test.html
|
| index 3322d2e5b14d0d7c7b1cacd7f0fe97872e6f1373..380e731ababb4105157035db3935da18327074d8 100644
|
| --- a/test/data/input/watch_global_var_test.html
|
| +++ b/test/data/input/watch_global_var_test.html
|
| @@ -9,19 +9,18 @@
|
| <meta charset="utf-8">
|
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
| <link rel="components" href="watch_global_var_component.html">
|
| - <title>watch_global_var_test</title>
|
| <script type="application/javascript" src="testing.js"></script>
|
| </head>
|
| <body>
|
| <div is="x-watch-global"></div>
|
| <script type="application/dart">
|
| import 'dart:html';
|
| - import 'package:web_ui/watcher.dart';
|
| + import 'package:web_ui/observe.dart';
|
| import 'common.dart';
|
| main() {
|
| topLevelVar = 'hello';
|
| - dispatch();
|
| - window.setTimeout(() => window.postMessage('done', '*'), 0);
|
| + deliverChangesSync();
|
| + window.setImmediate(() => window.postMessage('done', '*'));
|
| }
|
| </script>
|
| </body>
|
|
|