mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
b2fe406760
DONTBUILD
21 lines
374 B
HTML
21 lines
374 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 mozRTCPeerConnection();
|
|
var ld = pc.localDescription;
|
|
dump(ld.sdp);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="crash();">
|
|
</html>
|