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

Side by Side Diff: third_party/pkg/route_hierarchical/example/basic/example.html

Issue 1086713003: Remove everything but markdown from third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <title>example</title>
6 <style>
7 section {
8 display: none;
9 width: 600px;
10 height: 400px;
11 border: solid 1px #888;
12 }
13
14 section.selected {
15 display: block;
16 }
17
18 .warning {
19 color: red;
20 }
21 </style>
22 </head>
23
24 <body>
25 <h1>route.dart demo</h1>
26 <p>This demo requires a server to be truly useful. Coming soon!</p>
27 <div id="warning">Dart is not running</div>
28
29 <nav>
30 <a href="#" id="linkOne" title="Section One">One</a>
31 <a href="#" id="linkTwo" title="Section Two">Two</a>
32 </nav>
33
34 <section id="one">
35 <h2>Section One</h2>
36 </section>
37 <section id="two">
38 <h2>Section Two</h2>
39 </section>
40
41 <script type="application/dart" src="example.dart"></script>
42 <script src="packages/browser/dart.js"></script>
43 </body>
44 </html>
OLDNEW
« no previous file with comments | « third_party/pkg/route_hierarchical/example/basic/example.dart ('k') | third_party/pkg/route_hierarchical/karma.conf.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698