forked from h5bp/html5please
-
Notifications
You must be signed in to change notification settings - Fork 0
/
features.json
96 lines (96 loc) · 2.68 KB
/
features.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
[{
"feature": "SVG",
"status": "se",
"recco": "All modern browsers support SVG. For legacy browsers, you can use <a href='#'>svgweb</a> as a flash-based polyfill, or develop with <a href='#'>Raphaél</a> which has a VML renderer for <abbr title='Internet Explorer 6-8.'>oldIE</abbr>.",
"tags": "gtie6 gtie7 gtie8 polyfill"
},
{
"feature": "Canvas",
"status": "use",
"tags": "gtie8 polyfill",
"recco": "<a href='#'>FlashCanvas</a> or <a href='#'>excanvas</a> are your polyfills of choice if you absolutely need it."
},
{
"feature": "Video/Audio",
"status": "use",
"tags": "gtie8 polyfill" ,
"recco": "Use mediaelement.js as polyfill for API (flash fallback w/ consistent visual design too).. Video for everyone base setup if No polyfill desired."
},
{
"feature": "CSS3 Selectors",
"status": "caution",
"tags": "gtie8 no-polyfill",
"recco": ""
},
{
"feature": "<code>data-*</code> attributes",
"status": "use",
"tags": "",
"recco": "GROOVY everywhere obv. old browsers ignore unknown attributes, you can always use <code>getAttribute</code> or you can use the dataset polyfill for IE8+."
},
{
"feature": "CSS3 Transitions",
"status": "use",
"tags": "gtie9 no-polyfill",
"recco": "shim layer recomendded to get hwaccel with js fallback (isotope, yui transition, scripty2) ... or let it degrade"
},
{
"feature": "CSS3 Animations",
"status": "caution",
"tags": "gtie9 dont-use",
"recco": ""
},
{
"feature": "border-image",
"status": "caution",
"tags": "gtie8",
"recco": ""
},
{
"feature": "box-shadow",
"status": "use",
"tags": "gtie8",
"recco": ""
},
{
"feature": "box-reflection",
"status": "avoid",
"tags": "dont-use",
"recco": "Webkit only. Dont use."
},
{
"feature": "font face",
"status": "use",
"tags": "fallback",
"recco": "don't use cufon. use google webfonts or fontsquirrel generator"
},
{
"feature": "<code><input type=range></code>",
"status": "use",
"tags": "form input polyfill",
"recco": "We recommend you use blah blah, and use <a href='#'>frank yan's polyfill</a> or <a href='#'>freqdec</a>'s."
},
{
"feature": "<code><input type=color></code>",
"status": "avoid",
"tags": "form input dont-use",
"recco": "experimental use only"
},
{
"feature": "HTML5 Form Input Validation",
"status": "use",
"tags": "form polyfill",
"recco": ""
},
{
"feature": "background-attachment",
"status": "use",
"tags": "gtie7",
"recco": ""
},
{
"feature": "postMessage",
"status": "caution",
"tags": "gtie8",
"recco": ""
}]