mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
89 lines
2.4 KiB
HTML
89 lines
2.4 KiB
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>Indexed Database Test</title>
|
|
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
|
|
<script type="text/javascript;version=1.7">
|
|
function testSteps()
|
|
{
|
|
const data = { key: 5, index: 10 };
|
|
|
|
let request = mozIndexedDB.open(window.location.pathname, 1);
|
|
request.onerror = errorHandler;
|
|
request.onupgradeneeded = grabEventAndContinueHandler;
|
|
let event = yield;
|
|
|
|
let db = event.target.result;
|
|
|
|
ok(db instanceof IDBDatabase, "Got a real database");
|
|
|
|
db.onerror = errorHandler;
|
|
|
|
let objectStore = db.createObjectStore("foo", { keyPath: "key",
|
|
autoIncrement: true });
|
|
let index = objectStore.createIndex("foo", "index");
|
|
|
|
event.target.onsuccess = continueToNextStep;
|
|
yield;
|
|
|
|
objectStore = db.transaction("foo", IDBTransaction.READ_WRITE)
|
|
.objectStore("foo");
|
|
request = objectStore.add(data);
|
|
request.onsuccess = grabEventAndContinueHandler;
|
|
event = yield;
|
|
|
|
let key;
|
|
setTimeout(function() {
|
|
key = request.result;
|
|
continueToNextStep();
|
|
}, 0);
|
|
yield;
|
|
|
|
is(key, data.key, "Got the right key");
|
|
|
|
objectStore = db.transaction("foo").objectStore("foo");
|
|
objectStore.get(data.key).onsuccess = grabEventAndContinueHandler;
|
|
event = yield;
|
|
|
|
let obj;
|
|
setTimeout(function() {
|
|
obj = event.target.result;
|
|
continueToNextStep();
|
|
}, 0);
|
|
yield;
|
|
|
|
is(obj.key, data.key, "Got the right key");
|
|
is(obj.index, data.index, "Got the right property value");
|
|
|
|
objectStore = db.transaction("foo", IDBTransaction.READ_WRITE)
|
|
.objectStore("foo");
|
|
request = objectStore.delete(data.key);
|
|
request.onsuccess = grabEventAndContinueHandler;
|
|
event = yield;
|
|
|
|
key = undefined;
|
|
setTimeout(function() {
|
|
key = request.result;
|
|
continueToNextStep();
|
|
}, 0);
|
|
yield;
|
|
|
|
ok(key === undefined, "Got the right value");
|
|
|
|
finishTest();
|
|
yield;
|
|
}
|
|
</script>
|
|
<script type="text/javascript;version=1.7" src="helpers.js"></script>
|
|
</head>
|
|
|
|
<body onload="runTest();"></body>
|
|
|
|
</html>
|