haikuwebkit/LayoutTests/storage/indexeddb/resources/database-name-undefined.js

15 lines
285 B
JavaScript

if (this.importScripts) {
importScripts('../../../resources/js-test.js');
importScripts('shared.js');
}
description("Test IndexedDB undefined as record value");
function test()
{
removeVendorPrefixes();
shouldThrow("indexedDB.open();");
finishJSTest();
}
test();