1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/media/tests/crashtests/836349.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<!-- 1.7 +https://bugzilla.mozilla.org/show_bug.cgi?id=836349 1.8 +--> 1.9 +<head> 1.10 + <meta charset="utf-8"> 1.11 + <title>Bug 836349</title> 1.12 + <script type="application/javascript"> 1.13 + function crash() 1.14 + { 1.15 + var pc = new mozRTCPeerConnection(); 1.16 + var ld = pc.localDescription; 1.17 + dump(ld.sdp); 1.18 + } 1.19 + </script> 1.20 +</head> 1.21 + 1.22 +<body onload="crash();"> 1.23 +</html>