From a7900a928d4c6d61ab0d0998b9b9d84263464dc4 Mon Sep 17 00:00:00 2001 From: Tsuguya Toma Date: Sun, 1 Feb 2015 04:18:44 +0900 Subject: [PATCH] update waa-tests. --- webaudioapi/waa-tests.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/webaudioapi/waa-tests.ts b/webaudioapi/waa-tests.ts index 91c6114631..505f6214ef 100644 --- a/webaudioapi/waa-tests.ts +++ b/webaudioapi/waa-tests.ts @@ -317,7 +317,9 @@ declare var footstepsBuffer: any; ()=>{ var context = new webkitOfflineAudioContext(1, 2, 44100.5); + context.oncomplete = function(e) { + context.createBufferSource().buffer; + } context.startRendering(); - context.oncomplete(context.createBufferSource().buffer); }