gecko/dom/indexedDB/test/chromeHelpers.js
Carsten "Tomcat" Book d7f143eaad Backed out 2 changesets (bug 1202902) to recking bug 1202902 to be able to reopen inbound on a CLOSED TREE
Backed out changeset 647025383676 (bug 1202902)
Backed out changeset d70c7fe532c6 (bug 1202902)
2015-10-07 14:03:21 +02:00

43 lines
757 B
JavaScript

/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
var { 'classes': Cc, 'interfaces': Ci, 'utils': Cu } = Components;
var testGenerator = testSteps();
if (!window.runTest) {
window.runTest = function()
{
SimpleTest.waitForExplicitFinish();
testGenerator.next();
}
}
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);
}