diff options
Diffstat (limited to 'testing/web-platform/tests/IndexedDB/serialize-sharedarraybuffer-throws.https.html')
-rw-r--r-- | testing/web-platform/tests/IndexedDB/serialize-sharedarraybuffer-throws.https.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/web-platform/tests/IndexedDB/serialize-sharedarraybuffer-throws.https.html b/testing/web-platform/tests/IndexedDB/serialize-sharedarraybuffer-throws.https.html index 613ddfe99d..bff63fad8d 100644 --- a/testing/web-platform/tests/IndexedDB/serialize-sharedarraybuffer-throws.https.html +++ b/testing/web-platform/tests/IndexedDB/serialize-sharedarraybuffer-throws.https.html @@ -13,7 +13,7 @@ let open_rq = createdb(t); open_rq.onupgradeneeded = function(e) { let db = e.target.result; - let objStore = db.createObjectStore("test", { keyPath:"pKey" }); + let objStore = db.createObjectStore("test"); let sab = new SharedArrayBuffer(256); |