On iOS 8.4 (iPad Air), I am able to use IndexedDB in Safari, but in Chrome, it says it's null. Instead it has WebSQL.
Why is this the case? Is there any way to get IndexedDB on Chrome iOS or is it not added? (It's odd that it returns null
and not undefined
).
//Returns null
console.log( window.indexedDB );
console.log( window.webkitIndexedDB );
//Returns undefined
console.log( window.mozIndexedDB );
console.log( window.OIndexedDB );
console.log( window.msIndexedDB );