mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
8f8a999182
--HG-- rename : dom/indexedDB/test/test_globalObjects.xul => dom/indexedDB/test/test_globalObjects_chrome.xul rename : dom/indexedDB/test/test_globalObjects.html => dom/indexedDB/test/test_globalObjects_content.html rename : dom/indexedDB/test/unit/test_globalObjects.js => dom/indexedDB/test/unit/test_globalObjects_xpc.js
45 lines
806 B
JavaScript
45 lines
806 B
JavaScript
/**
|
|
* 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();
|
|
|
|
if (!window.runTest) {
|
|
window.runTest = function()
|
|
{
|
|
Cu.importGlobalProperties(["indexedDB"]);
|
|
|
|
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);
|
|
}
|