summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/IndexedDB/idbobjectstore_get5.any.js
blob: 1e3bb0fe647a07126fa74521a14a94c65324c39e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// META: title=IDBObjectStore.get() - returns the record with the first key in the range
// META: script=resources/support.js
// @author Microsoft <https://www.microsoft.com>

"use strict";

let db;
const t = async_test();
const open_rq = createdb(t);

open_rq.onupgradeneeded = event => {
  db = event.target.result;
  const os = db.createObjectStore("store");

  for (let i = 0; i < 10; i++) {
    os.add(`data${i}`, i);
  }
};

open_rq.onsuccess = event => {
  const rq = db.transaction("store", "readonly", {durability: 'relaxed'})
    .objectStore("store")
    .get(IDBKeyRange.bound(3, 6));

  rq.onsuccess = t.step_func(event => {
    assert_equals(event.target.result, "data3", "get(3-6)");
    t.done();
  });
};