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

Unified Diff: LayoutTests/webaudio/resources/waveshaper-testing.js

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/resources/waveshaper-testing.js
diff --git a/LayoutTests/webaudio/resources/waveshaper-testing.js b/LayoutTests/webaudio/resources/waveshaper-testing.js
index 4f90e750da38c54c5b1cadb1a1e3ecc257e6b6c2..923bb7dd5cc99b7d481b30abe27d4bcac4672990 100644
--- a/LayoutTests/webaudio/resources/waveshaper-testing.js
+++ b/LayoutTests/webaudio/resources/waveshaper-testing.js
@@ -154,7 +154,7 @@ function runWaveShaperOversamplingTest(testParams) {
// Create offline audio context.
var numberOfRenderFrames = sampleRate * lengthInSeconds;
- context = new webkitOfflineAudioContext(1, numberOfRenderFrames, sampleRate);
+ context = new OfflineAudioContext(1, numberOfRenderFrames, sampleRate);
// source -> waveshaper -> destination
var source = context.createBufferSource();
« no previous file with comments | « LayoutTests/webaudio/resources/scriptprocessornode-testing.js ('k') | LayoutTests/webaudio/sample-accurate-scheduling.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698