blob: 1656029b88f035eda16f8e252c9993185cc3a010 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<!DOCTYPE html>
<html>
<head>
<script src="../../../build/tizen-web-ui-fw/latest/js/jquery.js"></script>
<script src="../../../build/tizen-web-ui-fw/latest/js/tizen-web-ui-fw-libs.min.js"></script>
<script src="../../../build/tizen-web-ui-fw/latest/js/tizen-web-ui-fw.js"
data-framework-theme="tizen-white"
data-framework-viewport-scale=false>
</script>
<link rel="stylesheet" href="../../../libs/js/jquery-mobile-1.1.0/external/qunit.css" />
<script src="../../../libs/js/jquery-mobile-1.1.0/external/qunit.js"></script>
<script src="multimediaview-tests.js"></script>
<title>MultiMediaView</title>
</head>
<body>
<h1 id="qunit-header">MultiMediaView</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture">
<div data-role="page" id="multimediaview0">
<div data-role="header" data-position="fixed">
<h1>MultiMediaView (video)</h1>
</div>
<div data-role="content">
<video data-controls="true" style="width:100%;" id="video">
<source src="http://www.w3schools.com/html5/mov_bbb.mp4" type="video/mp4" />
<source src="http://www.w3schools.com/html5/mov_bbb.ogg" type="video/ogg" />
<source src="http://www.w3schools.com/html5/mov_bbb.webm" type="video/webm" />
<p>Your browser does not support the video tag.</p>
</video>
</div>
</div>
<div data-role="page" id="multimediaview1">
<div data-role="header" data-position="fixed">
<h1>MultiMediaView (audio)</h1>
</div>
<div data-role="content">
<audio data-controls="true" style="width:100%;" id="audio">
<source src="http://www.w3schools.com/html5/mov_bbb.mp4" type="audio/mp4" />
<source src="http://www.w3schools.com/html5/mov_bbb.ogg" type="audio/ogg" />
<p>Your browser does not support the audio tag.</p>
</audio>
</div>
</div>
</div>
</body>
</html>
|