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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html

Issue 2749073002: Reduce test runtimes for MSAN bots (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
index f3195add1b822215e6d4084d23313c761ab48839..e86926956b4baa16f9c3f3f7bd51b1dd2d2980a3 100644
--- a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
+++ b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-method-chaining.html
@@ -12,7 +12,7 @@
<body>
<script>
- var sampleRate = 44100;
+ var sampleRate = 8000;
// Create a dummy array for setValueCurveAtTime method.
var curveArray = new Float32Array([5.0, 6.0]);
@@ -53,7 +53,7 @@
// Task: test method chaining with invalid operation.
audit.defineTask('invalid-operation', function (done) {
- var context = new OfflineAudioContext(1, 44100, 44100);
+ var context = new OfflineAudioContext(1, sampleRate, sampleRate);
var osc = context.createOscillator();
var amp1 = context.createGain();
var amp2 = context.createGain();
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698