1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/media/tests/crashtests/837324.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class="reftest-wait"> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=837324 1.8 +--> 1.9 +<head> 1.10 + <meta charset="utf-8"> 1.11 + <title>Bug 837324</title> 1.12 + <script type="application/javascript"> 1.13 + function finish() { 1.14 + document.documentElement.removeAttribute("class"); 1.15 + } 1.16 + 1.17 + function start() { 1.18 + var o0 = new mozRTCPeerConnection(); 1.19 + var o1 = new mozRTCIceCandidate({"candidate":"0 -65535 IP 0 stun.sipgate.net 3227326073 type ::ffff:192.0.2.128 host 2302600701","sdpMid":"video 3907077665 RTP/SAVPF 5000","sdpMLineIndex":7}); 1.20 + try {o0.addIceCandidate(o1);} catch(e) {} // bug 842075 - remove try when fixed 1.21 + 1.22 + finish(); 1.23 + } 1.24 + </script> 1.25 +</head> 1.26 + 1.27 +<body onload="setTimeout(start, 100)"> 1.28 +</html>