Test IndexedDB's creating object store with null name
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
dbname = "create-objectstore-null-name.html"
indexedDB.deleteDatabase(dbname)
indexedDB.open(dbname)
objectStore = db.createObjectStore(null);
PASS objectStore.name is 'null'
PASS successfullyParsed is true
TEST COMPLETE