2013-09-28 11:25:46 +00:00
|
|
|
/**
|
|
|
|
* Any copyright is dedicated to the Public Domain.
|
|
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
*/
|
|
|
|
|
|
|
|
const { 'classes': Cc, 'interfaces': Ci, 'utils': Cu } = Components;
|
|
|
|
|
|
|
|
let testGenerator = testSteps();
|
|
|
|
|
2013-11-19 07:36:12 +00:00
|
|
|
if (!window.runTest) {
|
|
|
|
window.runTest = function()
|
|
|
|
{
|
|
|
|
Cu.importGlobalProperties(["indexedDB"]);
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2013-09-28 11:25:46 +00:00
|
|
|
|
2013-11-19 07:36:12 +00:00
|
|
|
testGenerator.next();
|
|
|
|
}
|
2013-09-28 11:25:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function finishTest()
|
|
|
|
{
|
|
|
|
SimpleTest.executeSoon(function() {
|
|
|
|
testGenerator.close();
|
|
|
|
SimpleTest.finish();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function grabEventAndContinueHandler(event)
|
|
|
|
{
|
|
|
|
testGenerator.send(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
function continueToNextStep()
|
|
|
|
{
|
|
|
|
SimpleTest.executeSoon(function() {
|
|
|
|
testGenerator.next();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function errorHandler(event)
|
|
|
|
{
|
|
|
|
throw new Error("indexedDB error, code " + event.target.error.name);
|
|
|
|
}
|