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

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

description("Test IndexedDB deleteObjectStore required argument");

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