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

Side by Side Diff: packages/dart_style/web/index.html

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « packages/dart_style/test/whitespace/while.stmt ('k') | packages/dart_style/web/main.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <meta charset="utf-8">
6 <title>Dart Style Sandbox</title>
7 <link rel="stylesheet" href="style.css">
8 </head>
9 <body>
10 <h2>Before</h2>
11 <div class="code-area">
12 <textarea id="before" cols="100" rows="10">// Enter code here:
13 main () {
14 print("Hello, world!");}</textarea><br/>
15 </div>
16 <label for="width">Page Width</label>
17 <input type="range" id="width" min="10" value="80" max="100" step="1" style= "width: 400px;">
18 <output for="width" id="width-output">80</output>
19 <h2>After</h2>
20 <div class="code-area">
21 <pre class="column-marker">
22 | 80 columns
23 </pre>
24 <textarea id="after" cols="100" rows="30" readonly></textarea>
25 </div>
26 <script type="application/dart" src="main.dart"></script>
27 <script src="packages/browser/dart.js"></script>
28 </body>
29 </html>
OLDNEW
« no previous file with comments | « packages/dart_style/test/whitespace/while.stmt ('k') | packages/dart_style/web/main.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698