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

Side by Side Diff: src/site/samples/terminal/example/index.html

Issue 27267004: Re-configured samples page. (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Created 7 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <!--
4 Copyright (c) 2012, the Dart project authors. Please see the AUTHORS fi le
5 for details. All rights reserved. Use of this source code is governed by a
6 BSD-style license that can be found in the LICENSE file.
7
8 This is a port of "Exploring the FileSystem APIs" to Dart.
9 See: http://www.html5rocks.com/en/tutorials/file/filesystem/
10 -->
11
12 <html>
13 <head>
14 <meta charset="utf-8" />
15 <meta http-equiv="X-UA-Compatible" content="chrome=1" />
16 <title>TerminalFilesystem</title>
17 <link href="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css" />
18 <link rel="stylesheet" href="terminal.css">
19 </head>
20 <body>
21 <h1>TerminalFilesystem</h1>
22 <div id="container">
23 <output id="output"></output>
24 <div id="input-line" class="input-line">
25 <div class="prompt">$&gt;</div><div><input id="cmdline" clas s="cmdline" autofocus /></div>
26 </div>
27 </div>
28 <script type="application/dart" src="terminal_filesystem.dart"></script>
29 <script src="packages/browser/dart.js"></script>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698