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

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

Issue 1387723002: Updating the samples page to reflect the examples that have been retired. (Closed) Base URL: https://github.com/dart-lang/www.dartlang.org.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
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 <style>
13 video, canvas {
14 margin-top: 25px;
15 width: 200px;
16 height: 112px;
17 border: 1px solid black;
18 }
19 </style>
20 </head>
21 <body>
22 <video poster="http://www.html5rocks.com/en/tutorials/video/basics/star.png" id="video-canvas-fancy" controls>
23 <source src="http://www.html5rocks.com/en/tutorials/video/basics/Chrome_Im F.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'></source>
24 <source src="http://www.html5rocks.com/en/tutorials/video/basics/Chrome_Im F.webm" type='video/webm; codecs="vp8, vorbis"'></source>
25 <source src="http://www.html5rocks.com/en/tutorials/video/basics/Chrome_Im F.ogv" type='video/ogg; codecs="theora, vorbis"'></source>
26 </video>
27 <canvas id="canvas-copy-fancy"></canvas>
28 <canvas id="canvas-draw-fancy"></canvas>
29
30 <script type="application/dart" src="video.dart"></script>
31 <script src="packages/browser/dart.js"></script>
32 </body>
33 </html>
OLDNEW
« no previous file with comments | « src/site/samples/tracker/index.markdown ('k') | src/site/samples/video/example/packages/browser/dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698