| 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 10 matching lines...) Expand all Loading... |
| 21 <style> | 21 <style> |
| 22 a.diagnostic { | 22 a.diagnostic { |
| 23 color: inherit; | 23 color: inherit; |
| 24 border-bottom: 2px dotted red; | 24 border-bottom: 2px dotted red; |
| 25 } | 25 } |
| 26 a:hover.diagnostic { | 26 a:hover.diagnostic { |
| 27 text-decoration: none; | 27 text-decoration: none; |
| 28 } | 28 } |
| 29 a.diagnostic>span { | 29 a.diagnostic>span { |
| 30 display: none; | 30 display: none; |
| 31 max-width: 70%; |
| 31 } | 32 } |
| 32 a:hover.diagnostic>span { | 33 a:hover.diagnostic>span { |
| 33 display: block; | 34 display: block; |
| 34 position: absolute; | 35 position: absolute; |
| 35 /* left: 1em; */ | 36 /* left: 1em; */ |
| 36 /* top: 2em; */ | 37 /* top: 2em; */ |
| 37 right: 19px; | 38 right: 1%; |
| 38 } | 39 } |
| 39 | 40 |
| 40 .offline { | 41 .offline { |
| 41 transition: opacity 10s; | 42 transition: opacity 10s; |
| 42 -webkit-transition: opacity 10s; | 43 -webkit-transition: opacity 10s; |
| 43 } | 44 } |
| 44 | 45 |
| 45 .offlineyay { | 46 .offlineyay { |
| 46 font-weight: bolder; | 47 font-weight: bolder; |
| 47 opacity: 0.0; | 48 opacity: 0.0; |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 </div> | 273 </div> |
| 273 </div> | 274 </div> |
| 274 </footer> | 275 </footer> |
| 275 <!-- | 276 <!-- |
| 276 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> | 277 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> |
| 277 <script type="application/dart" src="leap.dart"></script> | 278 <script type="application/dart" src="leap.dart"></script> |
| 278 --> | 279 --> |
| 279 <script type="application/javascript" src="leap.dart.js"></script> | 280 <script type="application/javascript" src="leap.dart.js"></script> |
| 280 </body> | 281 </body> |
| 281 </html> | 282 </html> |
| OLD | NEW |