OLD | NEW |
1 Test exceptional arguments for AudioParam timeline events | 1 Test exceptional arguments for AudioParam timeline events |
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 | 5 |
6 PASS gain.gain.setValueAtTime(Infinity, 1) threw exception TypeError: Failed to
execute 'setValueAtTime' on 'AudioParam': The provided float value is non-finite
.. | 6 PASS gain.gain.setValueAtTime(Infinity, 1) threw exception TypeError: Failed to
execute 'setValueAtTime' on 'AudioParam': The provided float value is non-finite
.. |
7 PASS gain.gain.linearRampToValueAtTime(Infinity, 1) threw exception TypeError: F
ailed to execute 'linearRampToValueAtTime' on 'AudioParam': The provided float v
alue is non-finite.. | 7 PASS gain.gain.linearRampToValueAtTime(Infinity, 1) threw exception TypeError: F
ailed to execute 'linearRampToValueAtTime' on 'AudioParam': The provided float v
alue is non-finite.. |
8 PASS gain.gain.exponentialRampToValueAtTime(Infinity, 1) threw exception TypeErr
or: Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The provid
ed float value is non-finite.. | 8 PASS gain.gain.exponentialRampToValueAtTime(Infinity, 1) threw exception TypeErr
or: Failed to execute 'exponentialRampToValueAtTime' on 'AudioParam': The provid
ed float value is non-finite.. |
9 PASS gain.gain.setTargetAtTime(Infinity, 1, 1) threw exception TypeError: Failed
to execute 'setTargetAtTime' on 'AudioParam': The provided float value is non-f
inite.. | 9 PASS gain.gain.setTargetAtTime(Infinity, 1, 1) threw exception TypeError: Failed
to execute 'setTargetAtTime' on 'AudioParam': The provided float value is non-f
inite.. |
10 PASS gain.gain.setValueAtTime(-Infinity, 1) threw exception TypeError: Failed to
execute 'setValueAtTime' on 'AudioParam': The provided float value is non-finit
e.. | 10 PASS gain.gain.setValueAtTime(-Infinity, 1) threw exception TypeError: Failed to
execute 'setValueAtTime' on 'AudioParam': The provided float value is non-finit
e.. |
(...skipping 30 matching lines...) Expand all Loading... |
41 PASS gain.gain.setValueCurveAtTime(curve, NaN, 1) threw exception TypeError: Fai
led to execute 'setValueCurveAtTime' on 'AudioParam': The provided double value
is non-finite.. | 41 PASS gain.gain.setValueCurveAtTime(curve, NaN, 1) threw exception TypeError: Fai
led to execute 'setValueCurveAtTime' on 'AudioParam': The provided double value
is non-finite.. |
42 PASS gain.gain.setValueCurveAtTime(curve, 1, -1) threw exception InvalidAccessEr
ror: Failed to execute 'setValueCurveAtTime' on 'AudioParam': Duration must be a
finite positive number: -1. | 42 PASS gain.gain.setValueCurveAtTime(curve, 1, -1) threw exception InvalidAccessEr
ror: Failed to execute 'setValueCurveAtTime' on 'AudioParam': Duration must be a
finite positive number: -1. |
43 PASS gain.gain.setValueCurveAtTime(curve, 1, Infinity) threw exception TypeError
: Failed to execute 'setValueCurveAtTime' on 'AudioParam': The provided double v
alue is non-finite.. | 43 PASS gain.gain.setValueCurveAtTime(curve, 1, Infinity) threw exception TypeError
: Failed to execute 'setValueCurveAtTime' on 'AudioParam': The provided double v
alue is non-finite.. |
44 PASS gain.gain.setValueCurveAtTime(curve, 1, -Infinity) threw exception TypeErro
r: Failed to execute 'setValueCurveAtTime' on 'AudioParam': The provided double
value is non-finite.. | 44 PASS gain.gain.setValueCurveAtTime(curve, 1, -Infinity) threw exception TypeErro
r: Failed to execute 'setValueCurveAtTime' on 'AudioParam': The provided double
value is non-finite.. |
45 PASS gain.gain.setValueCurveAtTime(curve, 1, NaN) threw exception TypeError: Fai
led to execute 'setValueCurveAtTime' on 'AudioParam': The provided double value
is non-finite.. | 45 PASS gain.gain.setValueCurveAtTime(curve, 1, NaN) threw exception TypeError: Fai
led to execute 'setValueCurveAtTime' on 'AudioParam': The provided double value
is non-finite.. |
46 PASS gain.gain.setValueCurveAtTime(curve, 1, 0) threw exception InvalidAccessErr
or: Failed to execute 'setValueCurveAtTime' on 'AudioParam': Duration must be a
finite positive number: 0. | 46 PASS gain.gain.setValueCurveAtTime(curve, 1, 0) threw exception InvalidAccessErr
or: Failed to execute 'setValueCurveAtTime' on 'AudioParam': Duration must be a
finite positive number: 0. |
47 PASS successfullyParsed is true | 47 PASS successfullyParsed is true |
48 | 48 |
49 TEST COMPLETE | 49 TEST COMPLETE |
50 | 50 |
OLD | NEW |