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

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: Move m_smoothedValue from AudioParam to AudioParamTimeline. 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 031da35e81ffcdb7c72e77f252e880b8a2ea77f6..af6d5ddd81583921880f19fec154bfd9b6750d58 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