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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-highpass.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 highpass filter"); 18 label: "test",
19 description: "Biquad highpass filter"
20 }, function (task, should) {
19 // Create offline audio context. 21 // Create offline audio context.
20 let context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, s ampleRate); 22 let context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, s ampleRate);
21 23
22 // The filters we want to test. 24 // The filters we want to test.
23 let filterParameters = [{cutoff : 0, q : 1, gain : 1 }, 25 let filterParameters = [{cutoff : 0, q : 1, gain : 1 },
24 {cutoff : 1, q : 1, gain : 1 }, 26 {cutoff : 1, q : 1, gain : 1 },
25 {cutoff : 0.25, q : 1, gain : 1 }, 27 {cutoff : 0.25, q : 1, gain : 1 },
26 ]; 28 ];
27 29
28 createTestAndRun(context, "highpass", { 30 createTestAndRun(context, "highpass", {
29 should: should, 31 should: should,
30 threshold: 1.5487e-8, 32 threshold: 1.5487e-8,
31 filterParameters: filterParameters 33 filterParameters: filterParameters
32 }).then(task.done.bind(task)); 34 }).then(task.done.bind(task));
33 }); 35 });
34 36
35 audit.run(); 37 audit.run();
36 </script> 38 </script>
37 39
38 </body> 40 </body>
39 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698