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

Unified Diff: LayoutTests/webaudio/audiobuffersource-loop-points.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-loop-points.html
diff --git a/LayoutTests/webaudio/audiobuffersource-loop-points.html b/LayoutTests/webaudio/audiobuffersource-loop-points.html
index c303a7fc411221e55ea248989c1e65b4fdd541c4..1b7ccd26d26dca6863f8eedffd93cd2b653d7275 100644
--- a/LayoutTests/webaudio/audiobuffersource-loop-points.html
+++ b/LayoutTests/webaudio/audiobuffersource-loop-points.html
@@ -82,7 +82,7 @@ function init() {
return;
// Create offline audio context.
- context = new webkitOfflineAudioContext(2, sampleRate * lengthInSeconds, sampleRate);
+ context = new OfflineAudioContext(2, sampleRate * lengthInSeconds, sampleRate);
// Create the test buffer.
// We'll loop this with the loop-points set for the 2nd half of this buffer.

Powered by Google App Engine
This is Rietveld 408576698