| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 for details. All rights reserved. Use of this source code is governed by a | 4 for details. All rights reserved. Use of this source code is governed by a |
| 5 BSD-style license that can be found in the LICENSE file. | 5 BSD-style license that can be found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html lang="en"> | 7 <html lang="en"> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 10 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 import 'dart:async'; | 38 import 'dart:async'; |
| 39 import 'dart:html'; | 39 import 'dart:html'; |
| 40 import 'package:unittest/unittest.dart'; | 40 import 'package:unittest/unittest.dart'; |
| 41 import 'package:web_ui/web_ui.dart'; | 41 import 'package:web_ui/web_ui.dart'; |
| 42 | 42 |
| 43 main() { | 43 main() { |
| 44 useShadowDom = true; | 44 useShadowDom = true; |
| 45 | 45 |
| 46 Timer.run(() { | 46 Timer.run(() { |
| 47 window.postMessage('done', '*'); | 47 window.postMessage('done', '*'); |
| 48 }); | 48 }); |
| 49 } | 49 } |
| 50 </script> | 50 </script> |
| 51 </body> | 51 </body> |
| 52 </html> | 52 </html> |
| OLD | NEW |