blob: 651fde46ae27da217a24905fb0278e800da7d2ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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>
|