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

Unified Diff: LayoutTests/webaudio/scriptprocessornode-premature-death.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-premature-death.html
diff --git a/LayoutTests/webaudio/scriptprocessornode-premature-death.html b/LayoutTests/webaudio/scriptprocessornode-premature-death.html
index 395d10cec9948b052dca34f6d9f44db10a9faf0d..1eafd5c30a2440dce6439782360ea3558f112a96 100644
--- a/LayoutTests/webaudio/scriptprocessornode-premature-death.html
+++ b/LayoutTests/webaudio/scriptprocessornode-premature-death.html
@@ -1,5 +1,6 @@
<!DOCTYPE html>
<script src="../resources/js-test.js"></script>
+<script src="resources/compatibility.js"></script>
<body>
<script>
description('Tests that a script processor node is not prematurely GCed');
@@ -17,7 +18,7 @@ function test(saveReference, nextStep) {
'keeping a reference to the script processor node alive.');
// Create an audio context
- var context = new webkitOfflineAudioContext(
+ var context = new OfflineAudioContext(
2, // channels
4096, // length (frames)
44100.0); // sample rate

Powered by Google App Engine
This is Rietveld 408576698