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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1); | 141 transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1); |
142 /* cubic-bezier(0, 1, 0.5, 1);*/ | 142 /* cubic-bezier(0, 1, 0.5, 1);*/ |
143 } | 143 } |
144 | 144 |
145 .myhidden { | 145 .myhidden { |
146 position: absolute; | 146 position: absolute; |
147 visibility: hidden; | 147 visibility: hidden; |
148 height: auto; | 148 height: auto; |
149 } | 149 } |
150 | 150 |
| 151 .mainEditorPane { |
| 152 overflow-y: scroll; |
| 153 overflow-x: hidden; |
| 154 white-space: pre; |
| 155 padding: 0px; |
| 156 max-height: 80vh; |
| 157 } |
| 158 |
| 159 div { |
| 160 counter-reset: dart-line-number; |
| 161 } |
| 162 |
| 163 .lineNumber { |
| 164 position: relative; |
| 165 padding-left: 3.5em; |
| 166 } |
| 167 |
| 168 .lineNumber:before { |
| 169 counter-increment: dart-line-number; |
| 170 content: counter(dart-line-number) " "; |
| 171 position: absolute; |
| 172 left: 0px; |
| 173 width: 3em; |
| 174 text-align: right; |
| 175 background-color: lightgoldenrodyellow; |
| 176 } |
151 | 177 |
152 </style> | 178 </style> |
153 | 179 |
154 <meta itemprop="name" content="Try Dart!"> | 180 <meta itemprop="name" content="Try Dart!"> |
155 <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."> | 181 <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."> |
156 <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."> | 182 <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."> |
157 <meta itemprop="image" content="try-dart-screenshot.png"> | 183 <meta itemprop="image" content="try-dart-screenshot.png"> |
158 | 184 |
159 <link rel="dart-sdk" href="sdk.json"> | 185 <link rel="dart-sdk" href="sdk.json"> |
160 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart"> | 186 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart"> |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 </div> | 290 </div> |
265 </div> | 291 </div> |
266 </footer> | 292 </footer> |
267 <!-- | 293 <!-- |
268 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> | 294 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> |
269 <script type="application/dart" src="leap.dart"></script> | 295 <script type="application/dart" src="leap.dart"></script> |
270 --> | 296 --> |
271 <script type="application/javascript" src="leap.dart.js"></script> | 297 <script type="application/javascript" src="leap.dart.js"></script> |
272 </body> | 298 </body> |
273 </html> | 299 </html> |
OLD | NEW |