indexeddb.json 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. {
  2. "title":"IndexedDB",
  3. "description":"Method of storing data client-side, allows indexed database queries.",
  4. "spec":"https://www.w3.org/TR/IndexedDB/",
  5. "status":"rec",
  6. "links":[
  7. {
  8. "url":"https://hacks.mozilla.org/2010/06/comparing-indexeddb-and-webdatabase/",
  9. "title":"Mozilla Hacks article"
  10. },
  11. {
  12. "url":"https://github.com/axemclion/IndexedDBShim",
  13. "title":"Polyfill for browsers supporting WebSQL"
  14. },
  15. {
  16. "url":"https://raw.github.com/phiggins42/has.js/master/detect/features.js#native-indexeddb",
  17. "title":"has.js test"
  18. },
  19. {
  20. "url":"https://www.webplatform.org/docs/apis/indexedDB",
  21. "title":"WebPlatform Docs"
  22. }
  23. ],
  24. "bugs":[
  25. {
  26. "description":"Firefox (prior to version 37) and [Safari](https://bugs.webkit.org/show_bug.cgi?id=149953) do not support IndexedDB inside web workers."
  27. },
  28. {
  29. "description":"[Firefox](https://bugzilla.mozilla.org/show_bug.cgi?id=781982) and [Edge](https://web.archive.org/web/20171210184542/https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/9968399/) do not support IndexedDB in private browsing mode."
  30. },
  31. {
  32. "description":"Not supported in Chrome 47 for iOS & below or other older iOS WebViews using UIWebView instead of WKWebView [see details](https://blog.chromium.org/2016/01/a-faster-more-stable-chrome-on-ios.html)\r\n\r\nChrome 36 and below did not support Blob objects as indexedDB values."
  33. },
  34. {
  35. "description":"Chrome has a bug where a deleted indexedDB can be re-created when dev tools are open (fixed in latest builds) [see bug](https://code.google.com/p/chromium/issues/detail?id=539931)"
  36. },
  37. {
  38. "description":"Microsoft Edge does not support IndexedDB inside blob web workers. [See issue](https://web.archive.org/web/20171213082727/https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/5942817/)."
  39. }
  40. ],
  41. "categories":[
  42. "JS API"
  43. ],
  44. "stats":{
  45. "ie":{
  46. "5.5":"n",
  47. "6":"n",
  48. "7":"n",
  49. "8":"n",
  50. "9":"n",
  51. "10":"a #1",
  52. "11":"a #1"
  53. },
  54. "edge":{
  55. "12":"a #1",
  56. "13":"a #1",
  57. "14":"a #1",
  58. "15":"a #1",
  59. "16":"a #1",
  60. "17":"a #1",
  61. "18":"a #1",
  62. "79":"y",
  63. "80":"y",
  64. "81":"y",
  65. "83":"y",
  66. "84":"y",
  67. "85":"y",
  68. "86":"y",
  69. "87":"y",
  70. "88":"y",
  71. "89":"y",
  72. "90":"y",
  73. "91":"y",
  74. "92":"y",
  75. "93":"y",
  76. "94":"y"
  77. },
  78. "firefox":{
  79. "2":"n",
  80. "3":"n",
  81. "3.5":"n",
  82. "3.6":"n",
  83. "4":"a x",
  84. "5":"a x",
  85. "6":"a x",
  86. "7":"a x",
  87. "8":"a x",
  88. "9":"a x",
  89. "10":"y x",
  90. "11":"y x",
  91. "12":"y x",
  92. "13":"y x",
  93. "14":"y x",
  94. "15":"y x",
  95. "16":"y",
  96. "17":"y",
  97. "18":"y",
  98. "19":"y",
  99. "20":"y",
  100. "21":"y",
  101. "22":"y",
  102. "23":"y",
  103. "24":"y",
  104. "25":"y",
  105. "26":"y",
  106. "27":"y",
  107. "28":"y",
  108. "29":"y",
  109. "30":"y",
  110. "31":"y",
  111. "32":"y",
  112. "33":"y",
  113. "34":"y",
  114. "35":"y",
  115. "36":"y",
  116. "37":"y",
  117. "38":"y",
  118. "39":"y",
  119. "40":"y",
  120. "41":"y",
  121. "42":"y",
  122. "43":"y",
  123. "44":"y",
  124. "45":"y",
  125. "46":"y",
  126. "47":"y",
  127. "48":"y",
  128. "49":"y",
  129. "50":"y",
  130. "51":"y",
  131. "52":"y",
  132. "53":"y",
  133. "54":"y",
  134. "55":"y",
  135. "56":"y",
  136. "57":"y",
  137. "58":"y",
  138. "59":"y",
  139. "60":"y",
  140. "61":"y",
  141. "62":"y",
  142. "63":"y",
  143. "64":"y",
  144. "65":"y",
  145. "66":"y",
  146. "67":"y",
  147. "68":"y",
  148. "69":"y",
  149. "70":"y",
  150. "71":"y",
  151. "72":"y",
  152. "73":"y",
  153. "74":"y",
  154. "75":"y",
  155. "76":"y",
  156. "77":"y",
  157. "78":"y",
  158. "79":"y",
  159. "80":"y",
  160. "81":"y",
  161. "82":"y",
  162. "83":"y",
  163. "84":"y",
  164. "85":"y",
  165. "86":"y",
  166. "87":"y",
  167. "88":"y",
  168. "89":"y",
  169. "90":"y",
  170. "91":"y",
  171. "92":"y",
  172. "93":"y",
  173. "94":"y",
  174. "95":"y"
  175. },
  176. "chrome":{
  177. "4":"p",
  178. "5":"p",
  179. "6":"p",
  180. "7":"p",
  181. "8":"p",
  182. "9":"p",
  183. "10":"n",
  184. "11":"a x",
  185. "12":"a x",
  186. "13":"a x",
  187. "14":"a x",
  188. "15":"a x",
  189. "16":"a x",
  190. "17":"a x",
  191. "18":"a x",
  192. "19":"a x",
  193. "20":"a x",
  194. "21":"a x",
  195. "22":"a x",
  196. "23":"y x",
  197. "24":"y",
  198. "25":"y",
  199. "26":"y",
  200. "27":"y",
  201. "28":"y",
  202. "29":"y",
  203. "30":"y",
  204. "31":"y",
  205. "32":"y",
  206. "33":"y",
  207. "34":"y",
  208. "35":"y",
  209. "36":"y",
  210. "37":"y",
  211. "38":"y",
  212. "39":"y",
  213. "40":"y",
  214. "41":"y",
  215. "42":"y",
  216. "43":"y",
  217. "44":"y",
  218. "45":"y",
  219. "46":"y",
  220. "47":"y",
  221. "48":"y",
  222. "49":"y",
  223. "50":"y",
  224. "51":"y",
  225. "52":"y",
  226. "53":"y",
  227. "54":"y",
  228. "55":"y",
  229. "56":"y",
  230. "57":"y",
  231. "58":"y",
  232. "59":"y",
  233. "60":"y",
  234. "61":"y",
  235. "62":"y",
  236. "63":"y",
  237. "64":"y",
  238. "65":"y",
  239. "66":"y",
  240. "67":"y",
  241. "68":"y",
  242. "69":"y",
  243. "70":"y",
  244. "71":"y",
  245. "72":"y",
  246. "73":"y",
  247. "74":"y",
  248. "75":"y",
  249. "76":"y",
  250. "77":"y",
  251. "78":"y",
  252. "79":"y",
  253. "80":"y",
  254. "81":"y",
  255. "83":"y",
  256. "84":"y",
  257. "85":"y",
  258. "86":"y",
  259. "87":"y",
  260. "88":"y",
  261. "89":"y",
  262. "90":"y",
  263. "91":"y",
  264. "92":"y",
  265. "93":"y",
  266. "94":"y",
  267. "95":"y",
  268. "96":"y",
  269. "97":"y"
  270. },
  271. "safari":{
  272. "3.1":"p",
  273. "3.2":"p",
  274. "4":"p",
  275. "5":"p",
  276. "5.1":"p",
  277. "6":"p",
  278. "6.1":"p",
  279. "7":"p",
  280. "7.1":"a #2",
  281. "8":"a #2",
  282. "9":"a #2",
  283. "9.1":"a #2",
  284. "10":"y",
  285. "10.1":"y",
  286. "11":"y",
  287. "11.1":"y",
  288. "12":"y",
  289. "12.1":"y",
  290. "13":"y",
  291. "13.1":"y",
  292. "14":"y",
  293. "14.1":"a #3",
  294. "15":"y",
  295. "TP":"y"
  296. },
  297. "opera":{
  298. "9":"n",
  299. "9.5-9.6":"n",
  300. "10.0-10.1":"n",
  301. "10.5":"p",
  302. "10.6":"p",
  303. "11":"p",
  304. "11.1":"p",
  305. "11.5":"p",
  306. "11.6":"p",
  307. "12":"p",
  308. "12.1":"p",
  309. "15":"y",
  310. "16":"y",
  311. "17":"y",
  312. "18":"y",
  313. "19":"y",
  314. "20":"y",
  315. "21":"y",
  316. "22":"y",
  317. "23":"y",
  318. "24":"y",
  319. "25":"y",
  320. "26":"y",
  321. "27":"y",
  322. "28":"y",
  323. "29":"y",
  324. "30":"y",
  325. "31":"y",
  326. "32":"y",
  327. "33":"y",
  328. "34":"y",
  329. "35":"y",
  330. "36":"y",
  331. "37":"y",
  332. "38":"y",
  333. "39":"y",
  334. "40":"y",
  335. "41":"y",
  336. "42":"y",
  337. "43":"y",
  338. "44":"y",
  339. "45":"y",
  340. "46":"y",
  341. "47":"y",
  342. "48":"y",
  343. "49":"y",
  344. "50":"y",
  345. "51":"y",
  346. "52":"y",
  347. "53":"y",
  348. "54":"y",
  349. "55":"y",
  350. "56":"y",
  351. "57":"y",
  352. "58":"y",
  353. "60":"y",
  354. "62":"y",
  355. "63":"y",
  356. "64":"y",
  357. "65":"y",
  358. "66":"y",
  359. "67":"y",
  360. "68":"y",
  361. "69":"y",
  362. "70":"y",
  363. "71":"y",
  364. "72":"y",
  365. "73":"y",
  366. "74":"y",
  367. "75":"y",
  368. "76":"y",
  369. "77":"y",
  370. "78":"y",
  371. "79":"y",
  372. "80":"y"
  373. },
  374. "ios_saf":{
  375. "3.2":"p",
  376. "4.0-4.1":"p",
  377. "4.2-4.3":"p",
  378. "5.0-5.1":"p",
  379. "6.0-6.1":"p",
  380. "7.0-7.1":"p",
  381. "8":"a #2",
  382. "8.1-8.4":"a #2",
  383. "9.0-9.2":"a #2",
  384. "9.3":"a #2",
  385. "10.0-10.2":"y",
  386. "10.3":"y",
  387. "11.0-11.2":"y",
  388. "11.3-11.4":"y",
  389. "12.0-12.1":"y",
  390. "12.2-12.5":"y",
  391. "13.0-13.1":"y",
  392. "13.2":"y",
  393. "13.3":"y",
  394. "13.4-13.7":"y",
  395. "14.0-14.4":"y",
  396. "14.5-14.8":"a #3",
  397. "15":"y"
  398. },
  399. "op_mini":{
  400. "all":"n"
  401. },
  402. "android":{
  403. "2.1":"p",
  404. "2.2":"p",
  405. "2.3":"p",
  406. "3":"p",
  407. "4":"p",
  408. "4.1":"p",
  409. "4.2-4.3":"p",
  410. "4.4":"y",
  411. "4.4.3-4.4.4":"y",
  412. "94":"y"
  413. },
  414. "bb":{
  415. "7":"p",
  416. "10":"y"
  417. },
  418. "op_mob":{
  419. "10":"n",
  420. "11":"p",
  421. "11.1":"p",
  422. "11.5":"p",
  423. "12":"p",
  424. "12.1":"p",
  425. "64":"y"
  426. },
  427. "and_chr":{
  428. "94":"y"
  429. },
  430. "and_ff":{
  431. "92":"y"
  432. },
  433. "ie_mob":{
  434. "10":"a #1",
  435. "11":"a #1"
  436. },
  437. "and_uc":{
  438. "12.12":"y"
  439. },
  440. "samsung":{
  441. "4":"y",
  442. "5.0-5.4":"y",
  443. "6.2-6.4":"y",
  444. "7.2-7.4":"y",
  445. "8.2":"y",
  446. "9.2":"y",
  447. "10.1":"y",
  448. "11.1-11.2":"y",
  449. "12.0":"y",
  450. "13.0":"y",
  451. "14.0":"y",
  452. "15.0":"y"
  453. },
  454. "and_qq":{
  455. "10.4":"y"
  456. },
  457. "baidu":{
  458. "7.12":"y"
  459. },
  460. "kaios":{
  461. "2.5":"y"
  462. }
  463. },
  464. "notes":"",
  465. "notes_by_num":{
  466. "1":"Partial support in IE 10 & 11 refers to a number of subfeatures [not being supported](https://indexdb-support-test.glitch.me/). Edge does not support IndexedDB inside blob web workers. [See issue](https://web.archive.org/web/20171213082727/https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/5942817/)",
  467. "2":"Partial support in Safari & iOS 8 & 9 refers to [seriously buggy behavior](http://www.raymondcamden.com/2014/09/25/IndexedDB-on-iOS-8-Broken-Bad/) as well as complete lack of support in WebViews.",
  468. "3":"Partial support [refers to a bug](https://bugs.webkit.org/show_bug.cgi?id=226547) in version 14.1.1 that causes indexedDB to never load when the browser is initially opened."
  469. },
  470. "usage_perc_y":84.19,
  471. "usage_perc_a":13.84,
  472. "ucprefix":false,
  473. "parent":"",
  474. "keywords":"indexdb",
  475. "ie_id":"indexeddb",
  476. "chrome_id":"6507459568992256",
  477. "firefox_id":"indexeddb",
  478. "webkit_id":"specification-indexed-database",
  479. "shown":true
  480. }