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

Unified Diff: LayoutTests/webaudio/scriptprocessornode.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/scriptprocessornode.html
diff --git a/LayoutTests/webaudio/scriptprocessornode.html b/LayoutTests/webaudio/scriptprocessornode.html
index 6919d74e08466f354c283ef861411e35bf348495..2092d03792e474dc8564ed98e9cfc8f339cca565 100644
--- a/LayoutTests/webaudio/scriptprocessornode.html
+++ b/LayoutTests/webaudio/scriptprocessornode.html
@@ -2,6 +2,7 @@
<html>
<head>
<script src="../resources/js-test.js"></script>
+<script src="resources/compatibility.js"></script>
<script type="text/javascript" src="resources/audio-testing.js"></script>
</head>
@@ -84,7 +85,7 @@ function runTest() {
window.jsTestIsAsync = true;
// Create offline audio context.
- context = new webkitOfflineAudioContext(2, renderLengthInFrames, sampleRate);
+ context = new OfflineAudioContext(2, renderLengthInFrames, sampleRate);
try {
var jsnode = context.createScriptProcessor(512, 0, 0);

Powered by Google App Engine
This is Rietveld 408576698