source: Dev/trunk/src/client/dojox/mobile/tests/test_Video-single-source.html

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 936 bytes
Line 
1<!DOCTYPE html>
2<html>
3<head>
4        <meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
5        <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
6        <meta name="apple-mobile-web-app-capable" content="yes"/>
7        <title>Video</title>
8
9        <script type="text/javascript" src="../deviceTheme.js" data-dojo-config="mblThemeFiles: ['base']"></script>
10        <script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true"></script>
11
12        <script type="text/javascript">
13                require([
14                        "dojox/mobile/parser",
15                        "dojox/mobile",
16                        "dojox/mobile/compat",
17                        "dojox/mobile/Video"
18                ]);
19        </script>
20</head>
21<body>
22        <video data-dojo-type="dojox.mobile.Video" width="320" height="240" controls>
23                <source src="video/sample.mp4" type="video/mp4">
24                <p>To show the movie, A browser which supported video tag is required.</p>
25        </video>
26</body>
27</html>
Note: See TracBrowser for help on using the repository browser.