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

Unified Diff: LayoutTests/webaudio/audiobuffersource-multi-channels.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
Index: LayoutTests/webaudio/audiobuffersource-multi-channels.html
diff --git a/LayoutTests/webaudio/audiobuffersource-multi-channels.html b/LayoutTests/webaudio/audiobuffersource-multi-channels.html
index 4b66cff74ece18d6e0b6dabf25f744b308b905ca..9d6a454c64ab46eb0326cfc0f9ffc48fd6725efe 100644
--- a/LayoutTests/webaudio/audiobuffersource-multi-channels.html
+++ b/LayoutTests/webaudio/audiobuffersource-multi-channels.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, 6);
var source = context.createBufferSource();
« no previous file with comments | « LayoutTests/webaudio/audiobuffersource-loop-points.html ('k') | LayoutTests/webaudio/audiobuffersource-playbackState.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698