Closed Psithief closed 11 years ago
As a side note, this prevent the shim to work with db.js: db.js tries to iterate through db.objectStoreNames to assign each dataStore as a property of the db object, and this iteration fails because db.objectStoreNames[i] returns undefined.
Would appreciate a pull request for this. :)
This breaks Android's 2.3 stock Browser, see: https://github.com/axemclion/IndexedDBShim/issues/73
The numeric indices should be properties of the object. Both Firefox and WebKit browsers allow access to the properties with a for-length construct.
StringList needs to replicate this behaviour because it is how everyone expects it to work.
.length is an attribute but not the only property, each child node should also be accessible as a property.