Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webaudio / biquad-allpass.html
blobb5cbef3c2ec1ce7193b88769915002d3c4fa1adb
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <script src="resources/compatibility.js"></script>
6 <script src="resources/audio-testing.js"></script>
7 <script src="../resources/js-test.js"></script>
8 <script src="resources/biquad-testing.js"></script>
9 </head>
11 <body>
13 <div id="description"></div>
14 <div id="console"></div>
16 <script>
17 description("Tests Biquad allpass filter.");
19 function runTest() {
20 if (window.testRunner) {
21 testRunner.dumpAsText();
22 testRunner.waitUntilDone();
25 window.jsTestIsAsync = true;
27 // Create offline audio context.
28 var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
30 var filterParameters = [{cutoff : 0, q : 10, gain : 1 },
31 {cutoff : 1, q : 10, gain : 1 },
32 {cutoff : .5, q : 0, gain : 1 },
33 {cutoff : 0.25, q : 10, gain : 1 },
35 createTestAndRun(context, "allpass", filterParameters);
38 runTest();
39 successfullyParsed = true;
41 </script>
43 </body>
44 </html>