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

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

Issue 208943004: Update WebAudio layout tests to use unprefixed AudioContext. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add console.log to compatibility.js 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
« no previous file with comments | « LayoutTests/webaudio/test-basic.html ('k') | LayoutTests/webaudio/up-mixing-mono-stereo.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/webaudio/up-mixing-mono-51.html
diff --git a/LayoutTests/webaudio/up-mixing-mono-51.html b/LayoutTests/webaudio/up-mixing-mono-51.html
index 254102c65e476559c14939bc1ffb3332d6ee3a13..c317d05405b8e38d7eee17616bc81726f7c65f29 100644
--- a/LayoutTests/webaudio/up-mixing-mono-51.html
+++ b/LayoutTests/webaudio/up-mixing-mono-51.html
@@ -23,7 +23,7 @@ function runTest() {
// Create offline audio context
var sampleRate = 44100.0;
- var context = new webkitOfflineAudioContext(6, sampleRate * toneLengthSeconds, sampleRate);
+ var context = new OfflineAudioContext(6, sampleRate * toneLengthSeconds, sampleRate);
var toneBuffer = createToneBuffer(context, 440, toneLengthSeconds, 1);
var source = context.createBufferSource();
« no previous file with comments | « LayoutTests/webaudio/test-basic.html ('k') | LayoutTests/webaudio/up-mixing-mono-stereo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698