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" manifest="nossl.appcache" itemscope itemtype="http://schema.org/
Product"> | 7 <html lang="en" manifest="nossl.appcache" itemscope itemtype="http://schema.org/
Product"> |
8 <head> | 8 <head> |
9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
10 <title>Try Dart!</title> | 10 <title>Try Dart!</title> |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 <meta itemprop="name" content="Try Dart!"> | 44 <meta itemprop="name" content="Try Dart!"> |
45 <meta itemprop="description" content="Write and run Dart code in your browser.
Dart is a class-based, object-oriented language with lexical scoping, closures,
and optional static typing."> | 45 <meta itemprop="description" content="Write and run Dart code in your browser.
Dart is a class-based, object-oriented language with lexical scoping, closures,
and optional static typing."> |
46 <meta name="description" content="Write and run Dart code in your browser. Dart
is a class-based, object-oriented language with lexical scoping, closures, and
optional static typing."> | 46 <meta name="description" content="Write and run Dart code in your browser. Dart
is a class-based, object-oriented language with lexical scoping, closures, and
optional static typing."> |
47 <meta itemprop="image" content="try-dart-screenshot.png"> | 47 <meta itemprop="image" content="try-dart-screenshot.png"> |
48 | 48 |
49 <link rel="dart-sdk" href="sdk.json"> | 49 <link rel="dart-sdk" href="sdk.json"> |
50 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart"> | 50 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart"> |
51 <link rel="benchmark-Richards" href="benchmarks/Richards.dart"> | 51 <link rel="benchmark-Richards" href="benchmarks/Richards.dart"> |
52 <link rel="benchmark-base" href="benchmarks/benchmark_base.dart"> | 52 <link rel="benchmark-base" href="benchmarks/benchmark_base.dart"> |
| 53 |
53 <link href="favicon.ico" rel="icon" type="image/x-icon"> | 54 <link href="favicon.ico" rel="icon" type="image/x-icon"> |
| 55 |
54 <meta name="viewport" content="initial-scale=1.0"> | 56 <meta name="viewport" content="initial-scale=1.0"> |
| 57 |
| 58 <!-- Chrome Mobile (Android) "Add to home screen" support --> |
| 59 <meta name="mobile-web-app-capable" content="yes"> |
| 60 <link rel="shortcut icon" sizes="196x196" href="dart-icon-196px.png"> |
| 61 |
| 62 <!-- iOS "Add to Home Screen" support --> |
55 <meta name="apple-mobile-web-app-capable" content="yes"> | 63 <meta name="apple-mobile-web-app-capable" content="yes"> |
56 <link rel="apple-touch-icon" href="dart-icon.png"> | 64 <link rel="apple-touch-icon" href="dart-icon-196px.png"> |
57 <meta names="apple-mobile-web-app-status-bar-style" content="black"> | 65 <meta names="apple-mobile-web-app-status-bar-style" content="black"> |
58 <link rel="apple-touch-startup-image" | 66 <link rel="apple-touch-startup-image" |
59 media="(device-width: 320px) | 67 media="(device-width: 320px) |
60 and (device-height: 568px) | 68 and (device-height: 568px) |
61 and (-webkit-device-pixel-ratio: 2)" | 69 and (-webkit-device-pixel-ratio: 2)" |
62 href="dart-iphone5.png"> | 70 href="dart-iphone5.png"> |
63 | 71 |
64 <!-- Enable Google Analytics --> | 72 <!-- Enable Google Analytics --> |
65 <script type="text/javascript"> | 73 <script type="text/javascript"> |
66 /* | 74 /* |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 </div> | 149 </div> |
142 </div> | 150 </div> |
143 </footer> | 151 </footer> |
144 <!-- | 152 <!-- |
145 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> | 153 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> |
146 <script type="application/dart" src="leap.dart"></script> | 154 <script type="application/dart" src="leap.dart"></script> |
147 --> | 155 --> |
148 <script type="application/javascript" src="leap.dart.js"></script> | 156 <script type="application/javascript" src="leap.dart.js"></script> |
149 </body> | 157 </body> |
150 </html> | 158 </html> |
OLD | NEW |