| Index: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-exponentialRampToValueAtTime.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-exponentialRampToValueAtTime.html b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-exponentialRampToValueAtTime.html
|
| index 3ac07f7421e262a524d3e67c12847474ad5be02c..0e4518476db2263d2f098073de73c93c4d0e632d 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-exponentialRampToValueAtTime.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-exponentialRampToValueAtTime.html
|
| @@ -43,14 +43,18 @@
|
| // uses the value from the setValueAtTime() call above.
|
| gainNode.gain.exponentialRampToValueAtTime(value, endTime)}
|
|
|
| - audit.define('test', function(task, should) {
|
| - task.describe(
|
| - 'AudioParam exponentialRampToValueAtTime() functionality');
|
| - createAudioGraphAndTest(
|
| - task, should, numberOfTests, initialValue, setValue, generateRamp,
|
| - 'exponentialRampToValueAtTime()', maxAllowedError,
|
| - createExponentialRampArray);
|
| - });
|
| + audit.define(
|
| + {
|
| + label: 'test',
|
| + description:
|
| + 'AudioParam exponentialRampToValueAtTime() functionality'
|
| + },
|
| + function(task, should) {
|
| + createAudioGraphAndTest(
|
| + task, should, numberOfTests, initialValue, setValue,
|
| + generateRamp, 'exponentialRampToValueAtTime()', maxAllowedError,
|
| + createExponentialRampArray);
|
| + });
|
|
|
| audit.run();
|
| </script>
|
|
|