summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/IndexedDB/idbobjectstore_get2.any.js
blob: 488a9043efde2ffc655e36cc0be37a57b696c6c2 (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
// META: title=IDBObjectStore.get() - key is a string
// META: script=resources/support.js
// @author Microsoft <https://www.microsoft.com>

"use strict";

let db;
const t = async_test();
const record = { key: "this is a key that's a string", 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, record.key);
    assert_equals(event.target.result.property, record.property);
    t.done();
  });
};