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

Unified Diff: LayoutTests/webaudio/up-mixing-mono-stereo.html

Issue 208943004: Update WebAudio layout tests to use unprefixed AudioContext. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
Index: LayoutTests/webaudio/up-mixing-mono-stereo.html
diff --git a/LayoutTests/webaudio/up-mixing-mono-stereo.html b/LayoutTests/webaudio/up-mixing-mono-stereo.html
index 177030f430285934330b9d8310490b499debf988..e8ea371cc55461f94f26a555cd28251667aaaea9 100644
--- a/LayoutTests/webaudio/up-mixing-mono-stereo.html
+++ b/LayoutTests/webaudio/up-mixing-mono-stereo.html
@@ -23,7 +23,7 @@ function runTest() {
// Create offline audio context
var sampleRate = 44100.0;
- var context = new webkitOfflineAudioContext(2, sampleRate * toneLengthSeconds, sampleRate);
+ var context = new OfflineAudioContext(2, sampleRate * toneLengthSeconds, sampleRate);
var toneBuffer = createToneBuffer(context, 440, toneLengthSeconds, 1);
var source = context.createBufferSource();

Powered by Google App Engine
This is Rietveld 408576698