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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/osc-negative-freq.html

Issue 2033503004: Avoid slow AudioParam automation path when possible (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webaudio/osc-negative-freq.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/osc-negative-freq.html b/third_party/WebKit/LayoutTests/webaudio/osc-negative-freq.html
index eee0c9eedd946ef0687579b78c919988b636b5fa..467063f2b18398c9ea2ee742b725d9950e8bf9ec 100644
--- a/third_party/WebKit/LayoutTests/webaudio/osc-negative-freq.html
+++ b/third_party/WebKit/LayoutTests/webaudio/osc-negative-freq.html
@@ -190,7 +190,9 @@
var zero = new Float32Array(result.length);
zero.fill(0);
- Should(options.message, result).beCloseToArray(zero, options.threshold || 0);
+ Should(options.message, result, {
+ verbose: true
+ }).beCloseToArray(zero, options.threshold || 0);
});
}
</script>

Powered by Google App Engine
This is Rietveld 408576698