| Index: LayoutTests/webaudio/biquad-lowshelf.html
|
| diff --git a/LayoutTests/webaudio/biquad-lowshelf.html b/LayoutTests/webaudio/biquad-lowshelf.html
|
| index 11ffd9ffbb6f0876752d0bda2e510ba522731ecb..4c9a8df941d636152d356805bf0f3063b645191d 100644
|
| --- a/LayoutTests/webaudio/biquad-lowshelf.html
|
| +++ b/LayoutTests/webaudio/biquad-lowshelf.html
|
| @@ -2,6 +2,7 @@
|
|
|
| <html>
|
| <head>
|
| +<script src="resources/compatibility.js"></script>
|
| <script src="resources/audio-testing.js"></script>
|
| <script src="../resources/js-test.js"></script>
|
| <script src="resources/biquad-testing.js"></script>
|
| @@ -24,7 +25,7 @@ function runTest() {
|
| window.jsTestIsAsync = true;
|
|
|
| // Create offline audio context.
|
| - var context = new webkitOfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
|
| + var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
|
|
|
| // The filters we want to test.
|
| var filterParameters = [{cutoff : 0, q : 10, gain : 10 },
|
|
|