blob: c61c7894349090e50f713424634ebfc92035831f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
var testGenerator = testSteps();
var testResult;
var testException;
function runTest()
{
testGenerator.next();
}
function finishTestNow()
{
if (testGenerator) {
testGenerator.close();
testGenerator = undefined;
}
}
function finishTest()
{
setTimeout(finishTestNow, 0);
setTimeout(() => {
if (window.testFinishedCallback)
window.testFinishedCallback(testResult, testException);
else {
let message;
if (testResult)
message = "ok";
else
message = testException;
window.parent.postMessage(message, "*");
}
}, 0);
}
function grabEventAndContinueHandler(event)
{
testGenerator.send(event);
}
function errorHandler(event)
{
throw new Error("indexedDB error, code " + event.target.error.name);
}
function continueToNextStep()
{
SimpleTest.executeSoon(function() {
testGenerator.next();
});
}
|