gecko/content/media/test/crashtests/876215.html
Ehsan Akhgari cbebfc17c9 Bug 886165 - Hide the alternate names in the spec behind prefs which are turned off by default; r=roc
This patch uses one pref per interface, to allow us finer grain control over
which ones we might need to turn on in the future.
2013-06-23 19:22:10 -04:00

15 lines
462 B
HTML

<script>
try { o1 = new window.OfflineAudioContext(1, 10, 44100); } catch(e) { }
try { o6 = o1.createScriptProcessor(0, 0, 2); } catch(e) { }
try { o8 = o1.createBufferSource(); } catch(e) { }
try { o8.connect(o1.destination); } catch(e) { }
try { o8.connect(o6) } catch(e) { }
try { o3.disconnect() } catch(e) { }
try { o8.buffer = function() {
o21 = o1.createBuffer(1, 3, o1.sampleRate);
o22 = o21.getChannelData(0);
return o21;
}()
; } catch(e) { }
</script>