1 if (this.importScripts) {
2 importScripts('../../../resources/js-test.js');
3 importScripts('shared.js');
6 description("Test IndexedDB keyrange required arguments");
10 shouldThrow("IDBKeyRange.only();");
11 shouldThrow("IDBKeyRange.lowerBound();");
12 shouldThrow("IDBKeyRange.upperBound();");
13 shouldThrow("IDBKeyRange.bound(1);");
14 shouldThrow("IDBKeyRange.bound();");