Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / webaudio / biquad-lowshelf.html
blob4c9a8df941d636152d356805bf0f3063b645191d
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 lowshelf 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 // The filters we want to test.
31 var filterParameters = [{cutoff : 0, q : 10, gain : 10 },
32 {cutoff : 1, q : 10, gain : 10 },
33 {cutoff : 0.25, q : 10, gain : 10 },
36 createTestAndRun(context, "lowshelf", filterParameters);
39 runTest();
40 successfullyParsed = true;
42 </script>
44 </body>
45 </html>