blob: f7cf6553d514b1eb08e1e99fb8e43870d5dc6146 [file] [log] [blame]
if (this.importScripts) {
importScripts('../../../resources/js-test.js');
importScripts('shared.js');
}
description("Test IndexedDB keyrange required arguments");
function test()
{
shouldThrow("IDBKeyRange.only();");
shouldThrow("IDBKeyRange.lowerBound();");
shouldThrow("IDBKeyRange.upperBound();");
shouldThrow("IDBKeyRange.bound(1);");
shouldThrow("IDBKeyRange.bound();");
finishJSTest();
}
test();