Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-notch.html

Issue 2708953003: Move task.describe descriptions to audit.define (Closed)
Patch Set: Address review comments. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <script src="../../resources/testharness.js"></script> 5 <script src="../../resources/testharness.js"></script>
6 <script src="../../resources/testharnessreport.js"></script> 6 <script src="../../resources/testharnessreport.js"></script>
7 <script src="../resources/audit-util.js"></script> 7 <script src="../resources/audit-util.js"></script>
8 <script src="../resources/audit.js"></script> 8 <script src="../resources/audit.js"></script>
9 <script src="../resources/biquad-filters.js"></script> 9 <script src="../resources/biquad-filters.js"></script>
10 <script src="../resources/biquad-testing.js"></script> 10 <script src="../resources/biquad-testing.js"></script>
11 </head> 11 </head>
12 12
13 <body> 13 <body>
14 <script> 14 <script>
15 let audit = Audit.createTaskRunner(); 15 let audit = Audit.createTaskRunner();
16 16
17 audit.define("test", function (task, should) { 17 audit.define({
18 task.describe("Biquad notch filter"); 18 label: "test",
19 description: "Biquad notch filter"
20 }, function (task, should) {
19 21
20 // Create offline audio context. 22 // Create offline audio context.
21 var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, s ampleRate); 23 var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, s ampleRate);
22 24
23 var filterParameters = [{cutoff : 0, q : 10, gain : 1 }, 25 var filterParameters = [{cutoff : 0, q : 10, gain : 1 },
24 {cutoff : 1, q : 10, gain : 1 }, 26 {cutoff : 1, q : 10, gain : 1 },
25 {cutoff : .5, q : 0, gain : 1 }, 27 {cutoff : .5, q : 0, gain : 1 },
26 {cutoff : 0.25, q : 10, gain : 1 }, 28 {cutoff : 0.25, q : 10, gain : 1 },
27 ]; 29 ];
28 30
29 createTestAndRun(context, "notch", { 31 createTestAndRun(context, "notch", {
30 should: should, 32 should: should,
31 threshold: 1.9669e-8, 33 threshold: 1.9669e-8,
32 filterParameters: filterParameters 34 filterParameters: filterParameters
33 }).then(task.done.bind(task)); 35 }).then(task.done.bind(task));
34 }); 36 });
35 37
36 audit.run(); 38 audit.run();
37 </script> 39 </script>
38 40
39 </body> 41 </body>
40 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698