OLD | NEW |
1 if (this.importScripts) { | 1 if (this.importScripts) { |
2 importScripts('../../../resources/js-test.js'); | 2 importScripts('../../../resources/js-test.js'); |
3 importScripts('shared.js'); | 3 importScripts('shared.js'); |
4 } | 4 } |
5 | 5 |
6 description("Test IndexedDB undefined as record value"); | 6 description("Test IndexedDB undefined as record value"); |
7 | 7 |
8 function test() | 8 function test() |
9 { | 9 { |
10 removeVendorPrefixes(); | |
11 shouldThrow("indexedDB.open();"); | 10 shouldThrow("indexedDB.open();"); |
12 finishJSTest(); | 11 finishJSTest(); |
13 } | 12 } |
14 | 13 |
15 test(); | 14 test(); |
OLD | NEW |