| 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="ssl.appcache" itemscope itemtype="http://schema.org/Pr
oduct"> | 7 <html lang="en" manifest="ssl.appcache" itemscope itemtype="http://schema.org/Pr
oduct"> |
| 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 12 matching lines...) Expand all Loading... |
| 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 max-width: 70%; |
| 32 } | 32 } |
| 33 a:hover.diagnostic>span { | 33 a:hover.diagnostic>span.diagnostic, a:hover.diagnostic>span.alert { |
| 34 display: block; | 34 display: block; |
| 35 position: absolute; | 35 position: absolute; |
| 36 /* left: 1em; */ | 36 /* left: 1em; */ |
| 37 /* top: 2em; */ | 37 /* top: 2em; */ |
| 38 right: 1%; | 38 right: 1%; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .offline { | 41 .offline { |
| 42 transition: opacity 10s; | 42 transition: opacity 10s; |
| 43 -webkit-transition: opacity 10s; | 43 -webkit-transition: opacity 10s; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 </div> | 271 </div> |
| 272 </div> | 272 </div> |
| 273 </footer> | 273 </footer> |
| 274 <!-- | 274 <!-- |
| 275 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> | 275 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc
hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> |
| 276 <script type="application/dart" src="leap.dart"></script> | 276 <script type="application/dart" src="leap.dart"></script> |
| 277 --> | 277 --> |
| 278 <script type="application/javascript" src="leap.dart.js"></script> | 278 <script type="application/javascript" src="leap.dart.js"></script> |
| 279 </body> | 279 </body> |
| 280 </html> | 280 </html> |
| OLD | NEW |