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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-highshelf.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 highshelf filter"); 18 label: "test",
19 description: "Biquad highshelf filter"
20 }, function (task, should) {
19 21
20 // Create offline audio context. 22 // Create offline audio context.
21 let context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, s ampleRate); 23 let context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, s ampleRate);
22 24
23 // The filters we want to test. 25 // The filters we want to test.
24 let filterParameters = [{cutoff : 0, q : 10, gain : 10 }, 26 let filterParameters = [{cutoff : 0, q : 10, gain : 10 },
25 {cutoff : 1, q : 10, gain : 10 }, 27 {cutoff : 1, q : 10, gain : 10 },
26 {cutoff : 0.25, q : 10, gain : 10 }, 28 {cutoff : 0.25, q : 10, gain : 10 },
27 ]; 29 ];
28 30
29 createTestAndRun(context, "highshelf", { 31 createTestAndRun(context, "highshelf", {
30 should: should, 32 should: should,
31 threshold: 5.6633e-8, 33 threshold: 5.6633e-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