css-sel3.json 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. {
  2. "title":"CSS3 selectors",
  3. "description":"Advanced element selection using selectors including: `[foo^=\"bar\"]`, `[foo$=\"bar\"]`, `[foo*=\"bar\"]`, `:root`, `:nth-child()`, `:nth-last-child()`, `nth-of-type`, `nth-last-of-type()`, `:last-child`, `:first-of-type`, `:last-of-type`, `:only-child`, `:only-of-type`, `:empty`, `:target`, `:enabled`, `:disabled`, `:checked`, `:not()`, `~` (general sibling)",
  4. "spec":"http://www.w3.org/TR/css3-selectors/",
  5. "status":"rec",
  6. "links":[
  7. {
  8. "url":"http://www.quirksmode.org/css/selectors/",
  9. "title":"Detailed support information"
  10. },
  11. {
  12. "url":"http://www.css3.info/selectors-test/",
  13. "title":"Automated CSS3 selector test"
  14. },
  15. {
  16. "url":"http://selectivizr.com",
  17. "title":"Selectivizr: Polyfill for IE6-8"
  18. },
  19. {
  20. "url":"http://docs.webplatform.org/wiki/css/selectors",
  21. "title":"WebPlatform Docs"
  22. }
  23. ],
  24. "bugs":[
  25. {
  26. "description":"Android 4.3 and lower (together with older WebKit browsers) [have issues](http://css-tricks.com/webkit-sibling-bug/) when combining pseudo classes with adjacent or general sibling selectors."
  27. },
  28. {
  29. "description":"iOS 8 Safari has [issues with nth-child](http://stackoverflow.com/questions/26032513/ios8-safari-after-a-pushstate-the-nth-child-selectors-not-works).\r\n"
  30. },
  31. {
  32. "description":"IE9-IE11 supports `:empty` but will not repaint/relayout the page if content is added/removed from an `:empty` selected element"
  33. },
  34. {
  35. "description":"iOS 9 has a bug in WebViews (not Safari) with the [CSS sibling selector](https://forums.developer.apple.com/thread/16449)"
  36. }
  37. ],
  38. "categories":[
  39. "CSS3"
  40. ],
  41. "stats":{
  42. "ie":{
  43. "5.5":"n",
  44. "6":"p",
  45. "7":"a #1",
  46. "8":"a #1",
  47. "9":"y",
  48. "10":"y",
  49. "11":"y"
  50. },
  51. "edge":{
  52. "12":"y",
  53. "13":"y",
  54. "14":"y"
  55. },
  56. "firefox":{
  57. "2":"n",
  58. "3":"n",
  59. "3.5":"y",
  60. "3.6":"y",
  61. "4":"y",
  62. "5":"y",
  63. "6":"y",
  64. "7":"y",
  65. "8":"y",
  66. "9":"y",
  67. "10":"y",
  68. "11":"y",
  69. "12":"y",
  70. "13":"y",
  71. "14":"y",
  72. "15":"y",
  73. "16":"y",
  74. "17":"y",
  75. "18":"y",
  76. "19":"y",
  77. "20":"y",
  78. "21":"y",
  79. "22":"y",
  80. "23":"y",
  81. "24":"y",
  82. "25":"y",
  83. "26":"y",
  84. "27":"y",
  85. "28":"y",
  86. "29":"y",
  87. "30":"y",
  88. "31":"y",
  89. "32":"y",
  90. "33":"y",
  91. "34":"y",
  92. "35":"y",
  93. "36":"y",
  94. "37":"y",
  95. "38":"y",
  96. "39":"y",
  97. "40":"y",
  98. "41":"y",
  99. "42":"y",
  100. "43":"y",
  101. "44":"y",
  102. "45":"y",
  103. "46":"y",
  104. "47":"y",
  105. "48":"y",
  106. "49":"y",
  107. "50":"y",
  108. "51":"y",
  109. "52":"y",
  110. "53":"y"
  111. },
  112. "chrome":{
  113. "4":"y",
  114. "5":"y",
  115. "6":"y",
  116. "7":"y",
  117. "8":"y",
  118. "9":"y",
  119. "10":"y",
  120. "11":"y",
  121. "12":"y",
  122. "13":"y",
  123. "14":"y",
  124. "15":"y",
  125. "16":"y",
  126. "17":"y",
  127. "18":"y",
  128. "19":"y",
  129. "20":"y",
  130. "21":"y",
  131. "22":"y",
  132. "23":"y",
  133. "24":"y",
  134. "25":"y",
  135. "26":"y",
  136. "27":"y",
  137. "28":"y",
  138. "29":"y",
  139. "30":"y",
  140. "31":"y",
  141. "32":"y",
  142. "33":"y",
  143. "34":"y",
  144. "35":"y",
  145. "36":"y",
  146. "37":"y",
  147. "38":"y",
  148. "39":"y",
  149. "40":"y",
  150. "41":"y",
  151. "42":"y",
  152. "43":"y",
  153. "44":"y",
  154. "45":"y",
  155. "46":"y",
  156. "47":"y",
  157. "48":"y",
  158. "49":"y",
  159. "50":"y",
  160. "51":"y",
  161. "52":"y",
  162. "53":"y",
  163. "54":"y",
  164. "55":"y",
  165. "56":"y",
  166. "57":"y"
  167. },
  168. "safari":{
  169. "3.1":"n",
  170. "3.2":"y",
  171. "4":"y",
  172. "5":"y",
  173. "5.1":"y",
  174. "6":"y",
  175. "6.1":"y",
  176. "7":"y",
  177. "7.1":"y",
  178. "8":"y",
  179. "9":"y",
  180. "9.1":"y",
  181. "10":"y",
  182. "TP":"y"
  183. },
  184. "opera":{
  185. "9":"n",
  186. "9.5-9.6":"y",
  187. "10.0-10.1":"y",
  188. "10.5":"y",
  189. "10.6":"y",
  190. "11":"y",
  191. "11.1":"y",
  192. "11.5":"y",
  193. "11.6":"y",
  194. "12":"y",
  195. "12.1":"y",
  196. "15":"y",
  197. "16":"y",
  198. "17":"y",
  199. "18":"y",
  200. "19":"y",
  201. "20":"y",
  202. "21":"y",
  203. "22":"y",
  204. "23":"y",
  205. "24":"y",
  206. "25":"y",
  207. "26":"y",
  208. "27":"y",
  209. "28":"y",
  210. "29":"y",
  211. "30":"y",
  212. "31":"y",
  213. "32":"y",
  214. "33":"y",
  215. "34":"y",
  216. "35":"y",
  217. "36":"y",
  218. "37":"y",
  219. "38":"y",
  220. "39":"y",
  221. "40":"y",
  222. "41":"y",
  223. "42":"y",
  224. "43":"y"
  225. },
  226. "ios_saf":{
  227. "3.2":"y",
  228. "4.0-4.1":"y",
  229. "4.2-4.3":"y",
  230. "5.0-5.1":"y",
  231. "6.0-6.1":"y",
  232. "7.0-7.1":"y",
  233. "8":"y",
  234. "8.1-8.4":"y",
  235. "9.0-9.2":"y",
  236. "9.3":"y",
  237. "10-10.1":"y"
  238. },
  239. "op_mini":{
  240. "all":"y"
  241. },
  242. "android":{
  243. "2.1":"y",
  244. "2.2":"y",
  245. "2.3":"y",
  246. "3":"y",
  247. "4":"y",
  248. "4.1":"y",
  249. "4.2-4.3":"y",
  250. "4.4":"y",
  251. "4.4.3-4.4.4":"y",
  252. "53":"y"
  253. },
  254. "bb":{
  255. "7":"y",
  256. "10":"y"
  257. },
  258. "op_mob":{
  259. "10":"y",
  260. "11":"y",
  261. "11.1":"y",
  262. "11.5":"y",
  263. "12":"y",
  264. "12.1":"y",
  265. "37":"y"
  266. },
  267. "and_chr":{
  268. "54":"y"
  269. },
  270. "and_ff":{
  271. "50":"y"
  272. },
  273. "ie_mob":{
  274. "10":"y",
  275. "11":"y"
  276. },
  277. "and_uc":{
  278. "11":"y"
  279. },
  280. "samsung":{
  281. "4":"y"
  282. }
  283. },
  284. "notes":"",
  285. "notes_by_num":{
  286. "1":"IE7 and IE8 support only these CSS3 selectors: General siblings (`element1~element2`) and Attribute selectors `[attr^=val]`, `[attr$=val]`, and `[attr*=val]`"
  287. },
  288. "usage_perc_y":97.63,
  289. "usage_perc_a":0.42,
  290. "ucprefix":false,
  291. "parent":"",
  292. "keywords":"",
  293. "ie_id":"",
  294. "chrome_id":"",
  295. "firefox_id":"",
  296. "webkit_id":"",
  297. "shown":true
  298. }