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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-nominal-range.html

Issue 2857833003: Print warning if IIR filter is unstable (Closed)
Patch Set: Use stable IIR filter for test. Created 3 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webaudio/IIRFilter/iir-unstable.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../resources/testharness.js"></script> 4 <script src="../../resources/testharness.js"></script>
5 <script src="../../resources/testharnessreport.js"></script> 5 <script src="../../resources/testharnessreport.js"></script>
6 <script src="../resources/audit-util.js"></script> 6 <script src="../resources/audit-util.js"></script>
7 <script src="../resources/audit.js"></script> 7 <script src="../resources/audit.js"></script>
8 <title>Test AudioParam Nominal Range Values</title> 8 <title>Test AudioParam Nominal Range Values</title>
9 </head> 9 </head>
10 10
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 } 182 }
183 } 183 }
184 }, 184 },
185 // These nodes don't have AudioParams, but we want to test them anyway. A ny arguments for the 185 // These nodes don't have AudioParams, but we want to test them anyway. A ny arguments for the
186 // constructor are pretty much arbitrary; they just need to be valid. 186 // constructor are pretty much arbitrary; they just need to be valid.
187 { 187 {
188 creator: "createBuffer", 188 creator: "createBuffer",
189 args: [1, 1, sampleRate], 189 args: [1, 1, sampleRate],
190 }, { 190 }, {
191 creator: "createIIRFilter", 191 creator: "createIIRFilter",
192 args: [[1,2],[3,4]] 192 args: [[1,2],[1, .9]]
193 }, { 193 }, {
194 creator: "createWaveShaper", 194 creator: "createWaveShaper",
195 args: [], 195 args: [],
196 }, { 196 }, {
197 creator: "createConvolver", 197 creator: "createConvolver",
198 args: [], 198 args: [],
199 }, { 199 }, {
200 creator: "createAnalyser", 200 creator: "createAnalyser",
201 args: [], 201 args: [],
202 }, { 202 }, {
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 return success; 469 return success;
470 } else { 470 } else {
471 should(!limits, nodeName) 471 should(!limits, nodeName)
472 .message("has no AudioParams as expected", 472 .message("has no AudioParams as expected",
473 "has no AudioParams but test expected " + limits); 473 "has no AudioParams but test expected " + limits);
474 } 474 }
475 } 475 }
476 </script> 476 </script>
477 </body> 477 </body>
478 </html> 478 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webaudio/IIRFilter/iir-unstable.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698