OLD | NEW |
1 Tests DOM exception messages | 1 Tests DOM exception messages |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 PASS context.createBuffer(99, 1, context.sampleRate) threw exception NotSupporte
dError: Failed to execute 'createBuffer' on 'AudioContext': The number of channe
ls provided (99) is outside the range [1, 32].. | 5 PASS context.createBuffer(99, 1, context.sampleRate) threw exception NotSupporte
dError: Failed to execute 'createBuffer' on 'AudioContext': The number of channe
ls provided (99) is outside the range [1, 32].. |
6 PASS context.createBuffer(0, 1, context.sampleRate) threw exception NotSupported
Error: Failed to execute 'createBuffer' on 'AudioContext': The number of channel
s provided (0) is outside the range [1, 32].. | 6 PASS context.createBuffer(0, 1, context.sampleRate) threw exception NotSupported
Error: Failed to execute 'createBuffer' on 'AudioContext': The number of channel
s provided (0) is outside the range [1, 32].. |
7 PASS context.createBuffer(1, 1, 1) threw exception NotSupportedError: Failed to
execute 'createBuffer' on 'AudioContext': The sample rate provided (1) is outsid
e the range [3000, 192000].. | 7 PASS context.createBuffer(1, 1, 1) threw exception NotSupportedError: Failed to
execute 'createBuffer' on 'AudioContext': The sample rate provided (1) is outsid
e the range [3000, 192000].. |
8 PASS context.createBuffer(1, 1, 1e6) threw exception NotSupportedError: Failed t
o execute 'createBuffer' on 'AudioContext': The sample rate provided (1.00000e+6
) is outside the range [3000, 192000].. | 8 PASS context.createBuffer(1, 1, 1e6) threw exception NotSupportedError: Failed t
o execute 'createBuffer' on 'AudioContext': The sample rate provided (1.00000e+6
) is outside the range [3000, 192000].. |
9 PASS context.createBuffer(1, 1, 3000) did not throw exception. | 9 PASS context.createBuffer(1, 1, 3000) did not throw exception. |
10 PASS context.createBuffer(1, 1, 192000) did not throw exception. | 10 PASS context.createBuffer(1, 1, 192000) did not throw exception. |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 PASS script = context.createScriptProcessor(256, 3) did not throw exception. | 120 PASS script = context.createScriptProcessor(256, 3) did not throw exception. |
121 PASS script.channelCount is 3 | 121 PASS script.channelCount is 3 |
122 PASS script.channelCountMode is "explicit" | 122 PASS script.channelCountMode is "explicit" |
123 PASS script.channelCount = 3 did not throw exception. | 123 PASS script.channelCount = 3 did not throw exception. |
124 PASS script.channelCount = 1 threw exception NotSupportedError: Failed to set th
e 'channelCount' property on 'AudioNode': channelCount cannot be changed from 3
to 1. | 124 PASS script.channelCount = 1 threw exception NotSupportedError: Failed to set th
e 'channelCount' property on 'AudioNode': channelCount cannot be changed from 3
to 1. |
125 PASS script.channelCount = 7 threw exception NotSupportedError: Failed to set th
e 'channelCount' property on 'AudioNode': channelCount cannot be changed from 3
to 7. | 125 PASS script.channelCount = 7 threw exception NotSupportedError: Failed to set th
e 'channelCount' property on 'AudioNode': channelCount cannot be changed from 3
to 7. |
126 PASS script.channelCountMode = 'explicit' did not throw exception. | 126 PASS script.channelCountMode = 'explicit' did not throw exception. |
127 PASS script.channelCountMode = 'max' threw exception NotSupportedError: Failed t
o set the 'channelCountMode' property on 'AudioNode': channelCountMode cannot be
changed from 'explicit' to 'max'. | 127 PASS script.channelCountMode = 'max' threw exception NotSupportedError: Failed t
o set the 'channelCountMode' property on 'AudioNode': channelCountMode cannot be
changed from 'explicit' to 'max'. |
128 PASS script.channelCountMode = 'clamped-max' threw exception NotSupportedError:
Failed to set the 'channelCountMode' property on 'AudioNode': channelCountMode c
annot be changed from 'explicit' to 'clamped-max'. | 128 PASS script.channelCountMode = 'clamped-max' threw exception NotSupportedError:
Failed to set the 'channelCountMode' property on 'AudioNode': channelCountMode c
annot be changed from 'explicit' to 'clamped-max'. |
129 PASS script.channelCountMode = 'junk' did not throw exception. | 129 PASS script.channelCountMode = 'junk' did not throw exception. |
| 130 PASS osc.noteOn is undefined. |
| 131 PASS osc.noteOff is undefined. |
| 132 PASS source.noteOn is undefined. |
| 133 PASS source.noteOff is undefined. |
130 PASS successfullyParsed is true | 134 PASS successfullyParsed is true |
131 | 135 |
132 TEST COMPLETE | 136 TEST COMPLETE |
133 | 137 |
OLD | NEW |