blob: 9142d51eb92e513a41dc1241f30179adce3a226f (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test for ReadableStreams and Fetch</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="application/javascript" src="common_readableStreams.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script type="application/javascript">
async function tests() {
await SpecialPowers.pushPrefEnv({
"set": [["dom.caches.enabled", true],
["dom.caches.testing.enabled", true],
["dom.quotaManager.testing", true]]
});
await test_nativeStream(SAME_COMPARTMENT);
await test_nativeStream(IFRAME_COMPARTMENT);
await workify('test_nativeStream');
await test_timeout(SAME_COMPARTMENT);
await test_timeout(IFRAME_COMPARTMENT);
await workify('test_timeout');
await test_nonNativeStream(SAME_COMPARTMENT);
await test_nonNativeStream(IFRAME_COMPARTMENT);
await workify('test_nonNativeStream');
await test_pendingStream(SAME_COMPARTMENT);
await test_pendingStream(IFRAME_COMPARTMENT);
await workify('test_pendingStream');
await test_noUint8Array(SAME_COMPARTMENT);
await test_noUint8Array(IFRAME_COMPARTMENT);
await workify('test_noUint8Array');
await test_nativeStream_cache(SAME_COMPARTMENT);
await test_nativeStream_cache(IFRAME_COMPARTMENT);
await workify('test_nativeStream_cache');
await test_nonNativeStream_cache(SAME_COMPARTMENT);
await test_nonNativeStream_cache(IFRAME_COMPARTMENT);
await workify('test_nonNativeStream_cache');
await test_codeExecution(SAME_COMPARTMENT);
await test_codeExecution(IFRAME_COMPARTMENT);
await test_global(SAME_COMPARTMENT);
await test_global(IFRAME_COMPARTMENT);
await workify('test_global');
}
async function runTests() {
try {
await tests();
} catch (exc) {
ok(false, exc.toString());
} finally {
SimpleTest.finish();
}
}
SimpleTest.waitForExplicitFinish();
// The iframe starts the tests by calling parent.next() when it loads.
</script>
<iframe src="iframe_readableStreams.html" id="iframe"></iframe>
</body>
</html>
|