more debug logging for bug 966322 DONTBUILD

--HG--
extra : transplant_source : %80%DF%2C%22%06%0B7%D5%E4%12%84%D0%E8%20%95%F15%8F/%81
This commit is contained in:
Karl Tomlinson 2014-02-20 13:15:58 +13:00
parent df1f09f072
commit 9b37d054ab

View File

@ -34,20 +34,22 @@ addLoadEvent(function() {
// Debug Logging for bug 966322
dump("Load event ran\n");
var bs = context.createBufferSource();
bs.buffer = context.createBuffer(1, 1, context.sampleRate);
bs.start();
bs.onended = function() {
dump("Graph is running\n");
dump("Graph started running\n");
}
var bs = context.createBufferSource();
bs.buffer = context.createBuffer(1, 1, context.sampleRate);
bs.start(sp.bufferSize / context.sampleRate);
bs.onended = function() {
dump("Graph ran for long enough to finish first ScriptProcessorBlock\n");
}
});
// Debug Logging for bug 966322
dump("script ran\n");
</script>
</pre>
</body>