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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/mediaelementaudiosourcenode-gc.html

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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: third_party/WebKit/LayoutTests/webaudio/mediaelementaudiosourcenode-gc.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/mediaelementaudiosourcenode-gc.html b/third_party/WebKit/LayoutTests/webaudio/mediaelementaudiosourcenode-gc.html
index d6fefe9df16e95ae35bcd74e09f780dd4539123c..a1b331e91849e49f6355b2b7822e376c631351ba 100644
--- a/third_party/WebKit/LayoutTests/webaudio/mediaelementaudiosourcenode-gc.html
+++ b/third_party/WebKit/LayoutTests/webaudio/mediaelementaudiosourcenode-gc.html
@@ -20,7 +20,7 @@ function runTest() {
}
audioElement = document.createElement("audio");
- context = new OfflineAudioContext(1, 1000, 44100);
+ context = new AudioContext();
source = context.createMediaElementSource(audioElement);
audioElement = null;
context = null;

Powered by Google App Engine
This is Rietveld 408576698