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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/panner-equalpower.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.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/panner-equalpower.html b/third_party/WebKit/LayoutTests/webaudio/panner-equalpower.html
index dfddb83d9fdcc3f49f4eeea851fe67fe9483f971..2ce02a9eb41cbcc84ad2b37f37942e092f7d7d87 100644
--- a/third_party/WebKit/LayoutTests/webaudio/panner-equalpower.html
+++ b/third_party/WebKit/LayoutTests/webaudio/panner-equalpower.html
@@ -31,7 +31,9 @@
// Create offline audio context.
context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);
- createTestAndRun(context, nodesToCreate, 1);
+ createTestAndRun(context, nodesToCreate, 1, function (panner, x, y, z) {
+ panner.setPosition(x, y, z);
+ });
}
runTest();

Powered by Google App Engine
This is Rietveld 408576698