1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/media/test/crashtests/907986-2.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,17 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 +<script> 1.7 +var context = new window.OfflineAudioContext(1, 100, 48000); 1.8 +context.oncomplete = function(e) { 1.9 + document.documentElement.removeAttribute("class"); 1.10 +}; 1.11 +// zero up vector 1.12 +context.listener.setOrientation(0, 6.311749985202524e+307, 0, 0, 0, 0); 1.13 +var panner = context.createPanner(); 1.14 +panner.setPosition(1, 2, 3); 1.15 +panner.connect(context.destination); 1.16 +var source = context.createOscillator(); 1.17 +source.connect(panner); 1.18 +source.start(0); 1.19 +context.startRendering(); 1.20 +</script>