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

Unified Diff: LayoutTests/webaudio/audioparam-summingjunction.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/audioparam-summingjunction.html
diff --git a/LayoutTests/webaudio/audioparam-summingjunction.html b/LayoutTests/webaudio/audioparam-summingjunction.html
index 35c04056584e73f283bbf96fb2b85667b7671e49..60bf7fa077b07f2b08c5e6445eb208816dded852 100644
--- a/LayoutTests/webaudio/audioparam-summingjunction.html
+++ b/LayoutTests/webaudio/audioparam-summingjunction.html
@@ -7,6 +7,7 @@ and that these signals are summed, along with the AudioParams intrinsic value.
<html>
<head>
+<script src="resources/compatibility.js"></script>
<script src="resources/audio-testing.js"></script>
<script src="resources/mix-testing.js"></script>
<script src="../resources/js-test.js"></script>
@@ -81,7 +82,7 @@ function runTest() {
var sampleFrameLength = sampleRate * lengthInSeconds;
// Create offline audio context.
- context = new webkitOfflineAudioContext(1, sampleFrameLength, sampleRate);
+ context = new OfflineAudioContext(1, sampleFrameLength, sampleRate);
// Create buffer used by the source which will have its gain controlled.
var constantOneBuffer = createConstantBuffer(context, sampleFrameLength, 1);
« no previous file with comments | « LayoutTests/webaudio/audioparam-setValueCurveAtTime.html ('k') | LayoutTests/webaudio/automatic-pull-node.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698