-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML5 Indexed DB not fully implemented. #1310
Comments
Set owner to @rakudrama. |
Try window.webkitIndexedDB. That will work only on WebKit browsers like Chrome (e.g. Firefox has mozIndexedDB), but you should be able to try it out. Over time we will remove vendor prefixes where we can. We will do more browser compat work in dart:html than in dart:dom, but we have some things to work through before we can get there. |
This comment was originally written by jordonwii...@gmail.com window.webkitIndexedDB does not work for me in dart:html. It works ok in dart:dom though. |
For M1, let's shoot for IndexedDB to work on primitive types on Chrome and FF. Added this to the M1 milestone. |
All blocked-on bugs have been resolved. Added Fixed label. |
This issue was originally filed by gchinvesto...@gmail.com
The Window type has no 'indexedDB' property. There are interfaces and implementation classes for the indexed db API, but apparently they haven't been properly tested yet (cf. Stephen Adams' comment in the General Dart Discussion)
The text was updated successfully, but these errors were encountered: