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

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

Issue 225903003: Tokenize one line at a time. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address Kasper's comments Created 6 years, 7 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
« no previous file with comments | « dart/site/try/build_try.gyp ('k') | dart/site/try/line_numbers.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
11 <meta http-equiv="Content-type" content="text/html;charset=UTF-8"> 11 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
12 <!-- 12 <!--
13 TODO(ahe): Reduce the number of fonts used based on actual usage. 13 TODO(ahe): Reduce the number of fonts used based on actual usage.
14 14
15 See: http://www.google.com/fonts#UsePlace:use/Collection:Open+Sans:400,600,700,8 00,300 15 See: http://www.google.com/fonts#UsePlace:use/Collection:Open+Sans:400,600,700,8 00,300
16 --> 16 -->
17 <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800,300 ' rel='stylesheet' type='text/css'> 17 <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800,300 ' rel='stylesheet' type='text/css'>
18 <link rel="stylesheet" type="text/css" href="dartlang-style.css"> 18 <link rel="stylesheet" type="text/css" href="dartlang-style.css">
19 <link rel="alternate stylesheet" type="text/css" href="line_numbers.css" title=" line_numbers">
19 <style> 20 <style>
20 a.diagnostic { 21 a.diagnostic {
21 /* position: relative; */ 22 /* position: relative; */
22 color: inherit; 23 color: inherit;
23 border-bottom: 2px dotted red; 24 border-bottom: 2px dotted red;
24 } 25 }
25 a:hover.diagnostic { 26 a:hover.diagnostic {
26 text-decoration: none; 27 text-decoration: none;
27 } 28 }
28 a.diagnostic span { 29 a.diagnostic span {
29 display: none; 30 display: none;
30 } 31 }
31 a:hover.diagnostic span { 32 a:hover.diagnostic span {
32 display: block; 33 display: block;
33 position: absolute; 34 position: absolute;
34 /* left: 1em; */ 35 /* left: 1em; */
35 /* top: 2em; */ 36 /* top: 2em; */
36 right: 10px; 37 left: 10px;
37 } 38 }
38 39
39 .offline { 40 .offline {
40 transition: opacity 10s; 41 transition: opacity 10s;
41 -webkit-transition: opacity 10s; 42 -webkit-transition: opacity 10s;
42 } 43 }
43 44
44 .offlineyay { 45 .offlineyay {
45 font-weight: bolder; 46 font-weight: bolder;
46 opacity: 0.0; 47 opacity: 0.0;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1); 142 transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
142 /* cubic-bezier(0, 1, 0.5, 1);*/ 143 /* cubic-bezier(0, 1, 0.5, 1);*/
143 } 144 }
144 145
145 .myhidden { 146 .myhidden {
146 position: absolute; 147 position: absolute;
147 visibility: hidden; 148 visibility: hidden;
148 height: auto; 149 height: auto;
149 } 150 }
150 151
152 .mainEditorPane {
153 overflow-y: auto;
154 overflow-x: hidden;
155 white-space: pre;
156 max-height: 80vh;
157 }
151 158
159 .lineNumber {
160 position: relative;
161 }
152 </style> 162 </style>
153 163
154 <meta itemprop="name" content="Try Dart!"> 164 <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."> 165 <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."> 166 <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"> 167 <meta itemprop="image" content="try-dart-screenshot.png">
158 168
159 <link rel="dart-sdk" href="sdk.json"> 169 <link rel="dart-sdk" href="sdk.json">
160 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart"> 170 <link rel="benchmark-DeltaBlue" href="benchmarks/DeltaBlue.dart">
161 <link rel="benchmark-Richards" href="benchmarks/Richards.dart"> 171 <link rel="benchmark-Richards" href="benchmarks/Richards.dart">
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 </div> 274 </div>
265 </div> 275 </div>
266 </footer> 276 </footer>
267 <!-- 277 <!--
268 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> 278 <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> 279 <script type="application/dart" src="leap.dart"></script>
270 --> 280 -->
271 <script type="application/javascript" src="leap.dart.js"></script> 281 <script type="application/javascript" src="leap.dart.js"></script>
272 </body> 282 </body>
273 </html> 283 </html>
OLDNEW
« no previous file with comments | « dart/site/try/build_try.gyp ('k') | dart/site/try/line_numbers.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698