forked from mirrors/gecko-dev
Automatic update from web-platform-tests Update IndexedDB web tests to durability relaxed Updates IndexedDB web tests to use the durability relaxed option for transactions. This will speed up trybots. Bug: 1258341 Change-Id: I0bfdc1e8adb1490d41b196f6711bdb4131dbe4bc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3984246 Reviewed-by: Evan Stade <estade@chromium.org> Commit-Queue: Nathan Memmott <memmott@chromium.org> Cr-Commit-Position: refs/heads/main@{#1063963} -- wpt-commits: 8ce3ff8d1c66775db8c21692270ff0e05c366630 wpt-pr: 36674
28 lines
768 B
JavaScript
28 lines
768 B
JavaScript
// META: title=IDBObjectStore.get() - key is a Date
|
|
// META: script=resources/support.js
|
|
// @author Microsoft <https://www.microsoft.com>
|
|
|
|
"use strict";
|
|
|
|
let db;
|
|
const t = async_test();
|
|
const record = { key: new Date(), property: "data" };
|
|
|
|
const open_rq = createdb(t);
|
|
open_rq.onupgradeneeded = event => {
|
|
db = event.target.result;
|
|
db.createObjectStore("store", { keyPath: "key" })
|
|
.add(record);
|
|
};
|
|
|
|
open_rq.onsuccess = event => {
|
|
const rq = db.transaction("store", "readonly", {durability: 'relaxed'})
|
|
.objectStore("store")
|
|
.get(record.key);
|
|
|
|
rq.onsuccess = t.step_func(event => {
|
|
assert_equals(event.target.result.key.valueOf(), record.key.valueOf());
|
|
assert_equals(event.target.result.property, record.property);
|
|
t.done();
|
|
});
|
|
};
|