blob: 46cef2b0f81a0f647d880e520228317ee6aeba8c [file] [log] [blame]
if (this.importScripts) {
importScripts('../../../resources/js-test.js');
importScripts('shared.js');
}
description("Test IndexedDB createObjectStore null handling");
indexedDBTest(prepareDatabase);
function prepareDatabase()
{
db = event.target.result;
objectStore = evalAndLog("db.createObjectStore(null);");
shouldBeEqualToString("objectStore.name", "null");
finishJSTest();
}