cors.json 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. {
  2. "title":"Cross-Origin Resource Sharing",
  3. "description":"Method of performing XMLHttpRequests across domains",
  4. "spec":"https://fetch.spec.whatwg.org/#http-cors-protocol",
  5. "status":"ls",
  6. "links":[
  7. {
  8. "url":"http://hacks.mozilla.org/2009/07/cross-site-xmlhttprequest-with-cors/",
  9. "title":"Mozilla Hacks blog post"
  10. },
  11. {
  12. "url":"http://msdn.microsoft.com/en-us/library/cc288060(VS.85).aspx",
  13. "title":"Alternative implementation by IE8"
  14. },
  15. {
  16. "url":"https://dev.opera.com/articles/view/dom-access-control-using-cross-origin-resource-sharing/",
  17. "title":"DOM access using CORS"
  18. },
  19. {
  20. "url":"https://raw.github.com/phiggins42/has.js/master/detect/features.js#native-cors-xhr",
  21. "title":"has.js test"
  22. }
  23. ],
  24. "bugs":[
  25. {
  26. "description":"IE10+ does not send cookies when withCredential=true ([IE Bug #759587](https://connect.microsoft.com/IE/feedback/details/759587/ie10-doesnt-support-cookies-on-cross-origin-xmlhttprequest-withcredentials-true)). A workaround is [to use a P3P policy](http://www.techrepublic.com/blog/software-engineer/craft-a-p3p-policy-to-make-ie-behave/)"
  27. },
  28. {
  29. "description":"IE10+ does not make a CORS request if port is the only difference ([IE Bug #781303](http://connect.microsoft.com/IE/feedback/details/781303))"
  30. },
  31. {
  32. "description":"Android and some old versions of WebKit (that may be found in various webview implementations) do not support Access-Control-Expose-Headers: https://code.google.com/p/android/issues/detail?id=56726"
  33. },
  34. {
  35. "description":"IE11 does not appear to support CORS for images in the `canvas` element"
  36. }
  37. ],
  38. "categories":[
  39. "JS API"
  40. ],
  41. "stats":{
  42. "ie":{
  43. "5.5":"n",
  44. "6":"n",
  45. "7":"n",
  46. "8":"a #2",
  47. "9":"a #2",
  48. "10":"a #1",
  49. "11":"y"
  50. },
  51. "edge":{
  52. "12":"y",
  53. "13":"y",
  54. "14":"y",
  55. "15":"y"
  56. },
  57. "firefox":{
  58. "2":"n",
  59. "3":"n",
  60. "3.5":"y",
  61. "3.6":"y",
  62. "4":"y",
  63. "5":"y",
  64. "6":"y",
  65. "7":"y",
  66. "8":"y",
  67. "9":"y",
  68. "10":"y",
  69. "11":"y",
  70. "12":"y",
  71. "13":"y",
  72. "14":"y",
  73. "15":"y",
  74. "16":"y",
  75. "17":"y",
  76. "18":"y",
  77. "19":"y",
  78. "20":"y",
  79. "21":"y",
  80. "22":"y",
  81. "23":"y",
  82. "24":"y",
  83. "25":"y",
  84. "26":"y",
  85. "27":"y",
  86. "28":"y",
  87. "29":"y",
  88. "30":"y",
  89. "31":"y",
  90. "32":"y",
  91. "33":"y",
  92. "34":"y",
  93. "35":"y",
  94. "36":"y",
  95. "37":"y",
  96. "38":"y",
  97. "39":"y",
  98. "40":"y",
  99. "41":"y",
  100. "42":"y",
  101. "43":"y",
  102. "44":"y",
  103. "45":"y",
  104. "46":"y",
  105. "47":"y",
  106. "48":"y",
  107. "49":"y",
  108. "50":"y",
  109. "51":"y",
  110. "52":"y",
  111. "53":"y"
  112. },
  113. "chrome":{
  114. "4":"a #1",
  115. "5":"a #1",
  116. "6":"a #1",
  117. "7":"a #1",
  118. "8":"a #1",
  119. "9":"a #1",
  120. "10":"a #1",
  121. "11":"a #1",
  122. "12":"a #1",
  123. "13":"y",
  124. "14":"y",
  125. "15":"y",
  126. "16":"y",
  127. "17":"y",
  128. "18":"y",
  129. "19":"y",
  130. "20":"y",
  131. "21":"y",
  132. "22":"y",
  133. "23":"y",
  134. "24":"y",
  135. "25":"y",
  136. "26":"y",
  137. "27":"y",
  138. "28":"y",
  139. "29":"y",
  140. "30":"y",
  141. "31":"y",
  142. "32":"y",
  143. "33":"y",
  144. "34":"y",
  145. "35":"y",
  146. "36":"y",
  147. "37":"y",
  148. "38":"y",
  149. "39":"y",
  150. "40":"y",
  151. "41":"y",
  152. "42":"y",
  153. "43":"y",
  154. "44":"y",
  155. "45":"y",
  156. "46":"y",
  157. "47":"y",
  158. "48":"y",
  159. "49":"y",
  160. "50":"y",
  161. "51":"y",
  162. "52":"y",
  163. "53":"y",
  164. "54":"y",
  165. "55":"y",
  166. "56":"y",
  167. "57":"y",
  168. "58":"y"
  169. },
  170. "safari":{
  171. "3.1":"n",
  172. "3.2":"n",
  173. "4":"a #1 #3",
  174. "5":"a #1 #3",
  175. "5.1":"a #1 #3",
  176. "6":"y #3",
  177. "6.1":"y #3",
  178. "7":"y #3",
  179. "7.1":"y #3",
  180. "8":"y #3",
  181. "9":"y #3",
  182. "9.1":"y #3",
  183. "10":"y #3",
  184. "TP":"y #3"
  185. },
  186. "opera":{
  187. "9":"n",
  188. "9.5-9.6":"n",
  189. "10.0-10.1":"n",
  190. "10.5":"n",
  191. "10.6":"n",
  192. "11":"n",
  193. "11.1":"n",
  194. "11.5":"n",
  195. "11.6":"n",
  196. "12":"y",
  197. "12.1":"y",
  198. "15":"y",
  199. "16":"y",
  200. "17":"y",
  201. "18":"y",
  202. "19":"y",
  203. "20":"y",
  204. "21":"y",
  205. "22":"y",
  206. "23":"y",
  207. "24":"y",
  208. "25":"y",
  209. "26":"y",
  210. "27":"y",
  211. "28":"y",
  212. "29":"y",
  213. "30":"y",
  214. "31":"y",
  215. "32":"y",
  216. "33":"y",
  217. "34":"y",
  218. "35":"y",
  219. "36":"y",
  220. "37":"y",
  221. "38":"y",
  222. "39":"y",
  223. "40":"y",
  224. "41":"y",
  225. "42":"y",
  226. "43":"y",
  227. "44":"y"
  228. },
  229. "ios_saf":{
  230. "3.2":"a #1 #3",
  231. "4.0-4.1":"a #1 #3",
  232. "4.2-4.3":"a #1 #3",
  233. "5.0-5.1":"a #1 #3",
  234. "6.0-6.1":"y #3",
  235. "7.0-7.1":"y #3",
  236. "8":"y #3",
  237. "8.1-8.4":"y #3",
  238. "9.0-9.2":"y #3",
  239. "9.3":"y #3",
  240. "10.0-10.2":"y #3"
  241. },
  242. "op_mini":{
  243. "all":"n"
  244. },
  245. "android":{
  246. "2.1":"a #1",
  247. "2.2":"a #1",
  248. "2.3":"a #1",
  249. "3":"a #1",
  250. "4":"a #1",
  251. "4.1":"a #1",
  252. "4.2-4.3":"a #1",
  253. "4.4":"y",
  254. "4.4.3-4.4.4":"y",
  255. "53":"y"
  256. },
  257. "bb":{
  258. "7":"a #1",
  259. "10":"y"
  260. },
  261. "op_mob":{
  262. "10":"n",
  263. "11":"n",
  264. "11.1":"n",
  265. "11.5":"n",
  266. "12":"y",
  267. "12.1":"y",
  268. "37":"y"
  269. },
  270. "and_chr":{
  271. "55":"y"
  272. },
  273. "and_ff":{
  274. "50":"y"
  275. },
  276. "ie_mob":{
  277. "10":"a #1",
  278. "11":"y"
  279. },
  280. "and_uc":{
  281. "11":"y"
  282. },
  283. "samsung":{
  284. "4":"y"
  285. }
  286. },
  287. "notes":"",
  288. "notes_by_num":{
  289. "1":"Does not support CORS for images in `<canvas>`",
  290. "2":"Supported somewhat in IE8 and IE9 using the XDomainRequest object (but has [limitations](http://blogs.msdn.com/b/ieinternals/archive/2010/05/13/xdomainrequest-restrictions-limitations-and-workarounds.aspx))",
  291. "3":"Does not support CORS for `<video>` in `<canvas>`: https://bugs.webkit.org/show_bug.cgi?id=135379"
  292. },
  293. "usage_perc_y":91.66,
  294. "usage_perc_a":2,
  295. "ucprefix":false,
  296. "parent":"",
  297. "keywords":"",
  298. "ie_id":"",
  299. "chrome_id":"",
  300. "firefox_id":"",
  301. "webkit_id":"",
  302. "shown":true
  303. }