Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: dom/indexedDB/test/unit/xpcshell-child-process.toml includes dom/indexedDB/test/unit/xpcshell-shared.toml
- Manifest: dom/indexedDB/test/unit/xpcshell-parent-process.toml includes dom/indexedDB/test/unit/xpcshell-shared.toml
/**
* Any copyright is dedicated to the Public Domain.
*/
/* exported testGenerator */
var testGenerator = testSteps();
function* testSteps() {
const name = this.window ? window.location.pathname : "Splendid Test";
const objectStoreName = "Objects";
var request = indexedDB.open(name, 1);
request.onerror = errorHandler;
request.onupgradeneeded = grabEventAndContinueHandler;
request.onsuccess = grabEventAndContinueHandler;
var event = yield undefined;
is(event.target.source, null, "correct event.target.source");
var db = event.target.result;
var objectStore = db.createObjectStore(objectStoreName, {
autoIncrement: true,
});
request = objectStore.add({});
request.onerror = errorHandler;
request.onsuccess = grabEventAndContinueHandler;
event = yield undefined;
ok(event.target.source === objectStore, "correct event.source");
// Wait for success
yield undefined;
finishTest();
}