chromium/third_party/blink/web_tests/storage/indexeddb/resources/createObjectStore-name-argument-required.js

if (this.importScripts) {
    importScripts('../../../resources/js-test.js');
    importScripts('shared.js');
}

description("Test IndexedDB createObjectStore name argument is required");

indexedDBTest(prepareDatabase);
function prepareDatabase()
{
    db = evalAndLog("db = event.target.result");
    shouldThrow("db.createObjectStore();");
    finishJSTest();
}