source: trunk/html5/test/examples/index.html @ 1369

Revision 1369, 1.4 KB checked in by zach, 3 years ago (diff)
  • Fixing iPad API disconnect
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                                "Invalid skin path specified": "badskin.html",
18                                "Single MP4": "single_mp4.html",
19                                "Single OGV": "single_ogg.html",
20                                "YouTube":"youtube.html",
21                                "Multiple sources (MP4 and OGV)": "mp4_ogg.html",
22                                "Multiple players": "multiple_players.html",
23                                "Custom Skin": "custom_skin.html",
24                                "Multiple players with custom skins": "multiple_customs.html",
25                                "Playlists": "playlist.html",
26                                "Controlbar": "controlbar.html",
27                                "Resize": "resize.html",
28                                //"Logo": "logo.html",
29                                "Load":"load.html",
30                                "API": "api.html",
31                                "Chromeless": "chromeless.html"
32                                //"Event listeners": "listeners.html"
33                        };
34                        for (var example in examples){
35                                var listItem = document.createElement("li");
36                                var link = document.createElement("a");
37                                link.href = examples[example];
38                                link.innerHTML = example;
39                                listItem.appendChild(link);
40                                list.appendChild(listItem);
41                        }
42                </script>
43               
44        </body>
45</html>
Note: See TracBrowser for help on using the repository browser.