forked from remy/html5demos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemos.json
163 lines (163 loc) · 3.34 KB
/
demos.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
[
{
"desc": "Two videos playing in sync",
"url": "two-videos",
"tags": "video",
"support": {
"live": "firefox opera safari chrome"
}
},
{
"desc": "Interactive canvas gradients",
"url": "canvas-grad",
"tags": "canvas",
"support": {
"live": "firefox opera safari chrome"
}
},
{
"desc": "Canvas & Video",
"url": "video-canvas",
"tags": "video canvas",
"support": {
"live": "firefox opera safari chrome"
}
},
{
"desc": "Video",
"url": "video",
"tags": "video",
"support": {
"live": "firefox opera safari chrome"
}
},
{
"desc": "Canvas",
"url": "canvas",
"tags": "canvas",
"support": {
"live": "firefox opera safari chrome"
}
},
{
"desc": "Content Editable",
"url": "contenteditable",
"tags": "contenteditable storage",
"support": {
"live": "ie firefox opera safari chrome"
}
},
{
"desc": "Geolocation",
"url": "geo",
"tags": "geolocation",
"note": "Works on Safari Mobile too",
"support": {
"live": "firefox",
"nightly": "chrome"
}
},
{
"desc": "postMessage",
"url": "postmessage",
"note": "same domain",
"tags": "postMessage",
"support": {
"live": "ie firefox opera safari chrome"
}
},
{
"desc": "postMessage",
"url": "postmessage2",
"tags": "postMessage",
"note": "cross domain",
"support": {
"live": "ie firefox opera safari chrome"
}
},
{
"desc": "drag and drop",
"url": "drag",
"tags": "dnd",
"support": {
"live": "ie firefox safari chrome"
}
},
{
"desc": "drag anything",
"url": "drag-anything",
"tags": "dnd",
"support": {
"live": "ie firefox safari chrome"
}
},
{
"desc": "offline detection",
"url": "offline",
"tags": "offline events",
"note": "Works on Safari Mobile too",
"support": {
"live": "firefox opera"
}
},
{
"desc": "navigator.onLine tests",
"url": "nav-online",
"tags": "offline",
"note": "Doesn't use events, only polls",
"support": {
"live": "firefox opera ie"
}
},
{
"desc": "on/offline event tests",
"url": "offline-events",
"notes": "Opera & Firefox - requires \"Work Offline\"",
"tags": "offline events",
"support": {
"live": "firefox opera"
}
},
{
"desc": "offline application using the manifest",
"url": "offlineapp",
"note": "FF 3.6 is still buggy - doesn't request manifest after initial load",
"tags": "offline manifest",
"support": {
"live": "firefox safari chrome"
}
},
{
"desc": "Storage",
"url": "storage",
"tags": "storage",
"support": {
"live": "ie firefox opera safari chrome"
}
},
{
"desc": "Web SQL Database Storage",
"url": "database",
"tags": "sql-database",
"support": {
"live": "safari chrome opera"
}
},
{
"desc": "Web SQL Database - rollback test",
"url": "database-rollback",
"tags": "sql-database",
"support": {
"live": "safari chrome opera"
}
},
{
"desc": "Web Workers",
"url": "worker",
"tags": "workers",
"note": "watch out - uses a lot of CPU! <a href=\"non-worker\">example without - will hang your browser</a>",
"support": {
"live": "safari chrome firefox"
}
}
]