source: plugins/related/test/compatibility.html @ 1938

Revision 1938, 1.1 KB checked in by jeroen, 22 months ago (diff)

initial cleanup of Flash related. Most test working, but tweaks needed

  • Property svn:executable set to *
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/player-5.2.swf',
23        'player',
24        720,
25        294,
26        '9.0.0',
27        null,
28        {file:'assets/playlist.xml', playlist: 'right', playlistsize: 240, plugins:'../related.swf', 'related.heading':'Check out these vids too:'},
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 related features are enabled: useicons, oncomplete, heading and playlisting.
37</p>
38
39</body>
40</html>
Note: See TracBrowser for help on using the repository browser.