| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <!-- Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | |
| 3 for details. All rights reserved. Use of this source code is governed by a | |
| 4 BSD-style license that can be found in the LICENSE file. | |
| 5 --> | |
| 6 <html> | |
| 7 <head> | |
| 8 <title>Leap Leg</title> | |
| 9 <link rel="stylesheet" type="text/css" href="leap.css" /> | |
| 10 </head> | |
| 11 <body> | |
| 12 <h2 id="status">Dart is not running</h2> | |
| 13 | |
| 14 <section id="outline"> | |
| 15 <h3>Outline</h3> | |
| 16 <div id="out" style="white-space: pre-wrap"></div> | |
| 17 </section> | |
| 18 | |
| 19 <section id="editor"> | |
| 20 <h3>Code</h3> | |
| 21 <div id="code">void main() { | |
| 22 print('Hello, World'); | |
| 23 } | |
| 24 </div> | |
| 25 </section> | |
| 26 | |
| 27 <iframe id="isolate" style="display:none" src="isolate.html"></iframe> | |
| 28 | |
| 29 <div id="popup"></div> | |
| 30 | |
| 31 <script type="application/dart" src="leap.dart"></script> | |
| 32 <script src="http://dart.googlecode.com/svn/branches/bleeding_edge/dart/clie
nt/dart.js"></script> | |
| 33 </body> | |
| 34 </html> | |
| OLD | NEW |