| Index: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
|
| index 3eef32f1e0e2296042a909e2c20da25d7bfd146b..00f0dcec2d3b954a5825ef33ace13a09323f5a0f 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
|
| @@ -68,7 +68,7 @@
|
| .linearRampToValueAtTime(2.0, 1.0);
|
| },
|
| 'Calling setValueAtTime() with a negative end time')
|
| - .throw('InvalidAccessError');
|
| + .throw('RangeError');
|
|
|
| // The first operation succeeds but the second fails due to zero target
|
| // value for the exponential ramp. Thus only the first should have
|
| @@ -79,7 +79,7 @@
|
| 0.0, 1.0);
|
| },
|
| 'Calling exponentialRampToValueAtTime() with a zero target value')
|
| - .throw('InvalidAccessError');
|
| + .throw('RangeError');
|
|
|
| osc.start();
|
| osc.stop(1.0);
|
|
|