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

Side by Side Diff: src/site/samples/localstorage/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 file
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
9 <html>
10 <head>
11 <meta charset="utf-8">
12 <title>Local Storage in Dart</title>
13 </head>
14 <body>
15 <h1>Local Storage in Dart</h1>
16
17 <p>
18 From local storage: <output id="username-output"></output>
19 </p>
20
21 <label for="username">Username:</label>
22 <input type="text" name="username" id="username">
23 <input type="submit" id="save" value="Save">
24
25 <script type="application/dart" src="localstorage.dart"></script>
26 <script src="packages/browser/dart.js"></script>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698