forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudio-scheduled-source-basic.html
77 lines (67 loc) · 2.37 KB
/
audio-scheduled-source-basic.html
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
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>
Test AudioScheduledSourceNode
</title>
<script src="../imported/w3c/web-platform-tests/resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="resources/audit.js"></script>
</head>
<body>
<script id="layout-test-code">
let context = new AudioContext();
let audit = Audit.createTaskRunner();
audit.define(
{
label: 'construction',
description: 'Construct AudioScheduledSourceNode'
},
function(task, should) {
should(function() {
return new AudioScheduledSourceNode(context);
}, 'new AudioScheduledSourceNode(c)').throw(TypeError);
task.done();
});
audit.define(
{
label: 'properties',
description: 'Test properties on derived nodes'
},
function(task, should) {
let expectedProperties = ['start', 'stop', 'onended'];
// AudioScheduledSourceNode must have these properties.
for (p in expectedProperties) {
should(
AudioScheduledSourceNode.prototype,
'AudioScheduledSourceNode.prototype')
.haveOwnProperty(expectedProperties[p]);
}
// ConstantSource and Oscillator must not
let nodes = ['ConstantSourceNode', 'OscillatorNode'];
for (n in nodes) {
for (p in expectedProperties) {
should(window[nodes[n]].prototype, nodes[n] + '.prototype')
.notHaveOwnProperty(expectedProperties[p]);
}
}
// AudioBufferSourceNode has it's own start method, but should not
// have the others.
for (p in expectedProperties) {
if (expectedProperties[p] !== 'start') {
should(
AudioBufferSourceNode.prototype,
'AudioBufferSourceNode.prototype')
.notHaveOwnProperty(expectedProperties[p]);
}
}
should(
AudioBufferSourceNode.prototype,
'AudioBufferSourceNode.prototype')
.haveOwnProperty('start');
task.done();
});
audit.run();
</script>
</body>
</html>