Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: dart/site/try/index.html

Issue 197923002: Mock up code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 21 matching lines...) Expand all
32 32
33 .offline { 33 .offline {
34 transition: opacity 10s; 34 transition: opacity 10s;
35 -webkit-transition: opacity 10s; 35 -webkit-transition: opacity 10s;
36 } 36 }
37 37
38 .offlineyay { 38 .offlineyay {
39 font-weight: bolder; 39 font-weight: bolder;
40 opacity: 0.0; 40 opacity: 0.0;
41 } 41 }
42
43 .dart-code-completion-holder {
44 position: relative;
45 }
46
47 .dart-code-completion-holder *.dart-code-completion {
48 display: none;
49 position: absolute;
50 left: 0px;
51 right: 0px;
52 min-width: 400px;
53 background: white;
54 foreground: black;
55 border: 1px solid black;
56 z-index: 10;
57 }
58
59 .dart-code-completion-holder.active *.dart-code-completion {
60 display: block;
61 }
42 </style> 62 </style>
43 63
44 <meta itemprop="name" content="Try Dart!"> 64 <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."> 65 <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."> 66 <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"> 67 <meta itemprop="image" content="try-dart-screenshot.png">
48 68
49 <link rel="dart-sdk" href="sdk.json"> 69 <link rel="dart-sdk" href="sdk.json">
50 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart"> 70 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart">
51 <link rel="benchmark-Richards" href="benchmarks/Richards.dart"> 71 <link rel="benchmark-Richards" href="benchmarks/Richards.dart">
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 </div> 169 </div>
150 </div> 170 </div>
151 </footer> 171 </footer>
152 <!-- 172 <!--
153 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> 173 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script>
154 <script type="application/dart" src="leap.dart"></script> 174 <script type="application/dart" src="leap.dart"></script>
155 --> 175 -->
156 <script type="application/javascript" src="leap.dart.js"></script> 176 <script type="application/javascript" src="leap.dart.js"></script>
157 </body> 177 </body>
158 </html> 178 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698