source: trunk/fl5/js/test/examples/index.html @ 1422

Revision 1422, 2.2 KB checked in by zach, 3 years ago (diff)
  • Fixing signed URLs for iOS 1114
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2<html>
3        <head>
4                <title>HTML5 Player Examples</title>
5        </head>
6        <body>
7                <h1>Examples</h1>
8                <ul id="examples"></ul>
9                <script type="text/javascript">
10                        var list = document.getElementById("examples");
11                        var examples = {
12                                "Page with no document type": "nodoctype.html",
13                                "Object and embed tags": "objectembed.html",
14                                "Video tag embed": "videotag.html",
15                                "No file specified": "nofile.html",
16                                "Invalid file path specified": "badfile.html",
17                                "Absolute file path": "filepathsabsolute.html",
18                                "Root file path": "filepathsroot.html",
19                                "Relative file path": "filepathsrelative.html",
20                                "Invalid skin path specified": "badskin.html",
21                                "Single MP4": "single_mp4.html",
22                                "Single OGV": "single_ogg.html",
23                                "YouTube":"youtube.html",
24                                "Multiple sources (MP4 and OGV)": "mp4_ogg.html",
25                                "Multiple players": "multiple_players.html",
26                                "Custom Skin": "custom_skin.html",
27                                "Multiple players with custom skins": "multiple_customs.html",
28                                "Playlists": "playlist.html",
29                                "Controlbar": "controlbar.html",
30                                "Resize": "resize.html",
31                                "Logo": "logo.html",
32                                "Load":"load.html",
33                                "API": "api.html",
34                                "Chromeless": "chromeless.html",
35                                "Plugins": "plugins.html",
36                                "Firefox bug": "load.html#",
37                                "FLV failover": "failover.html",
38                                "Dojo": "libraries/dojo.html",
39                                "Ext Core": "libraries/ext-core.html",
40                                "jQuery": "libraries/jquery.html",
41                                "MooTools": "libraries/mootools.html",
42                                "Prototype": "libraries/prototype.html",
43                                "Scriptaculous": "libraries/scriptaculous.html",
44                                "SWFObject": "libraries/swfobject.html",
45                                "YUI": "libraries/yui.html",
46                                "Social media": "socialmedia.html",
47                                "Apple (Cupertino) Streaming": "m3u8.html",
48                                "Loading HTML instead of a skin": "htmlskin.html",
49                                "Skin redirect": "skinredirect.html",
50                                "Extensions": "extensions.html"
51                                //"Event listeners": "listeners.html"
52                        };
53                        for (var example in examples){
54                                var listItem = document.createElement("li");
55                                var link = document.createElement("a");
56                                link.href = examples[example];
57                                link.innerHTML = example;
58                                listItem.appendChild(link);
59                                list.appendChild(listItem);
60                        }
61                </script>
62               
63        </body>
64</html>
Note: See TracBrowser for help on using the repository browser.