OLD | NEW |
1 <!DOCTYPE html><!-- Copyright (c) 2012, the Dart project authors. Please see th
e AUTHORS file | 1 <!DOCTYPE html><!-- Copyright (c) 2012, the Dart project authors. Please see th
e AUTHORS file |
2 for details. All rights reserved. Use of this source code is governed by a | 2 for details. All rights reserved. Use of this source code is governed by a |
3 BSD-style license that can be found in the LICENSE file. --><html><head> | 3 BSD-style license that can be found in the LICENSE file. --><html><head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title>Sunflower Demo</title> | 5 <title>Sunflower Demo</title> |
6 <link type="text/css" rel="stylesheet" href="sunflower.css"> | 6 <link type="text/css" rel="stylesheet" href="sunflower.css"> |
7 </head> | 7 </head> |
8 <body> | 8 <body> |
9 <h1>drfibonacci's Sunflower Spectacular</h1> | 9 <h1>drfibonacci's Sunflower Spectacular</h1> |
10 <p>A canvas 2D demo.</p> | 10 <p>A canvas 2D demo.</p> |
(...skipping 11 matching lines...) Expand all Loading... |
22 <p id="summary"> </p> | 22 <p id="summary"> </p> |
23 <p id="notes"> </p> | 23 <p id="notes"> </p> |
24 </footer> | 24 </footer> |
25 | 25 |
26 <script src="dev_compiler/runtime/harmony_feature_check.js"></script> | 26 <script src="dev_compiler/runtime/harmony_feature_check.js"></script> |
27 <script src="dev_compiler/runtime/dart_runtime.js"></script> | 27 <script src="dev_compiler/runtime/dart_runtime.js"></script> |
28 <script src="dev_compiler/runtime/dart/core.js"></script> | 28 <script src="dev_compiler/runtime/dart/core.js"></script> |
29 <script src="dev_compiler/runtime/dart/collection.js"></script> | 29 <script src="dev_compiler/runtime/dart/collection.js"></script> |
30 <script src="dev_compiler/runtime/dart/_internal.js"></script> | 30 <script src="dev_compiler/runtime/dart/_internal.js"></script> |
31 <script src="dev_compiler/runtime/dart/math.js"></script> | 31 <script src="dev_compiler/runtime/dart/math.js"></script> |
| 32 <script src="dev_compiler/runtime/dart/_interceptors.js"></script> |
32 <script src="dev_compiler/runtime/dart/async.js"></script> | 33 <script src="dev_compiler/runtime/dart/async.js"></script> |
33 <script src="dev_compiler/runtime/dart/_foreign_helper.js"></script> | 34 <script src="dev_compiler/runtime/dart/_foreign_helper.js"></script> |
34 <script src="dev_compiler/runtime/dart/_js_embedded_names.js"></script> | 35 <script src="dev_compiler/runtime/dart/_js_embedded_names.js"></script> |
35 <script src="dev_compiler/runtime/dart/_js_helper.js"></script> | 36 <script src="dev_compiler/runtime/dart/_js_helper.js"></script> |
36 <script src="dev_compiler/runtime/dart/isolate.js"></script> | 37 <script src="dev_compiler/runtime/dart/isolate.js"></script> |
37 <script src="dev_compiler/runtime/dart/typed_data.js"></script> | 38 <script src="dev_compiler/runtime/dart/typed_data.js"></script> |
| 39 <script src="dev_compiler/runtime/dart/_native_typed_data.js"></script> |
38 <script src="dev_compiler/runtime/dart/_isolate_helper.js"></script> | 40 <script src="dev_compiler/runtime/dart/_isolate_helper.js"></script> |
39 <script src="dev_compiler/runtime/dart/_js_primitives.js"></script> | 41 <script src="dev_compiler/runtime/dart/_js_primitives.js"></script> |
40 <script src="dev_compiler/runtime/dart/_interceptors.js"></script> | |
41 <script src="dev_compiler/runtime/dart/convert.js"></script> | 42 <script src="dev_compiler/runtime/dart/convert.js"></script> |
42 <script src="dev_compiler/runtime/dart/_native_typed_data.js"></script> | |
43 <script src="circle.js"></script> | 43 <script src="circle.js"></script> |
44 <script src="dom.js"></script> | 44 <script src="dom.js"></script> |
45 <script src="painter.js"></script> | 45 <script src="painter.js"></script> |
46 <script src="sunflower.js"></script> | 46 <script src="sunflower.js"></script> |
47 <script>_isolate_helper.startRootIsolate(sunflower.main, []);</script> | 47 <script>dart.start('sunflower');</script> |
48 | 48 |
49 | 49 |
50 | 50 |
51 </body></html> | 51 </body></html> |
OLD | NEW |