Chromium Code Reviews| Index: sky/tests/framework/basic.sky |
| diff --git a/sky/tests/framework/basic.sky b/sky/tests/framework/basic.sky |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1776e0a643ee801ecf7e4ab5a7656f0c92e1da38 |
| --- /dev/null |
| +++ b/sky/tests/framework/basic.sky |
| @@ -0,0 +1,13 @@ |
| +<script> |
| +import 'basic.dart'; |
| +import 'dart:sky'; |
| +import '../resources/dom_serializer.dart'; |
| +import 'dart:sky.internals' as internals; |
| + |
| +void main() { |
| + new TestApp(); |
| + window.requestAnimationFrame((_) { |
|
abarth-chromium
2015/03/25 17:39:14
Why requestAnimationFrame? I guess this is to get
|
| + internals.notifyTestComplete(serializeNode(document.lastChild)); |
| + }); |
| +} |
| +</script> |