source: plugins/hd/test/compatibility.html @ 1921

Revision 1921, 1.1 KB checked in by jeroen, 23 months ago (diff)

cleaned up some tests and updated guide

Line 
1<html>
2<head>
3
4<meta charset="UTF-8">
5<script type="text/javascript" src="assets/swfobject.js"></script>
6<title>Backward compatibility</title>
7<style>
8    body { padding: 50px; font: 13px/20px Arial; background: #EEE; }
9    #player, p, ul { margin-top: 20px; display: block; }
10    #player { -webkit-box-shadow: 0 0 5px #999; background: #000; color:#FFF; line-height:270px; text-align: center; }
11</style>
12
13</head>
14<body>
15
16<h2>Backward compatibility</h2>
17
18<div id="player">Select an option</div>
19
20<script type="text/javascript">
21    swfobject.embedSWF(
22        'assets/player52.swf',
23        'player',
24        960,
25        360,
26        '9.0.0',
27        null,
28        {file:'assets/playlist.xml', playlist: 'right', playlistsize: 320, skin:'assets/stijl.zip', plugins:'../hd.swf', 'hd.fullscreen': true},
29        {allowfullscreen:'true',allowscriptaccess:'always'},
30        {id:'player',name:'player'}
31    );
32</script>
33
34<p>
35    This test uses the 5.2 player and the SWFObject embed method.<br />
36    All HD-SWF features are enabled: skinning, playlist, streaming, YouTube and fullscreen.
37</p>
38
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.