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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/panner-equalpower-stereo.html

Issue 1820403002: Implement Automations for PannerNode and AutioListener (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update test because CL for min/maxValue AudioParam landed Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webaudio/panner-equalpower-stereo.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/panner-equalpower-stereo.html b/third_party/WebKit/LayoutTests/webaudio/panner-equalpower-stereo.html
index 79af7c64070f978564e4de13ad234713c4dd2366..ed760042d7ec8fb7fcf63bc31a0c5f52ddbeefdc 100644
--- a/third_party/WebKit/LayoutTests/webaudio/panner-equalpower-stereo.html
+++ b/third_party/WebKit/LayoutTests/webaudio/panner-equalpower-stereo.html
@@ -31,7 +31,9 @@
// Create offline audio context.
context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
- createTestAndRun(context, nodesToCreate, 2);
+ createTestAndRun(context, nodesToCreate, 2, function (panner, x, y, z) {
+ panner.setPosition(x, y, z);
+ });
}
runTest();

Powered by Google App Engine
This is Rietveld 408576698