mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
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:
parent
df1f09f072
commit
9b37d054ab
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user