tenfourfox/dom/media/tests/crashtests/836349.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

21 lines
371 B
HTML

<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=836349
-->
<head>
<meta charset="utf-8">
<title>Bug 836349</title>
<script type="application/javascript">
function crash()
{
var pc = new RTCPeerConnection();
var ld = pc.localDescription;
dump(ld.sdp);
}
</script>
</head>
<body onload="crash();">
</html>