Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webaudio / biquad-notch.html
blob0db1ce9a7aa80ecdf48343d3d63822372df962cd
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 notch 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 },
36 createTestAndRun(context, "notch", filterParameters);
39 runTest();
40 successfullyParsed = true;
42 </script>
44 </body>
45 </html>