mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 804118 - Fix crashtests to use mozRTCPeerConnection insread of mozPeerConnection. r=jesup
This commit is contained in:
parent
6f9f95a78f
commit
6c9a1d75a2
@ -7,7 +7,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=791270
|
||||
<meta charset="utf-8">
|
||||
<title>Simple PeerConnection Video Test</title>
|
||||
<script type="application/javascript">
|
||||
var pc = new mozPeerConnection();
|
||||
var pc = new mozRTCPeerConnection();
|
||||
pc.addStream(undefined);
|
||||
</script>
|
||||
</head>
|
||||
|
@ -7,10 +7,10 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=791278
|
||||
<meta charset="utf-8">
|
||||
<title>Simple PeerConnection Video Test - Invalid callback</title>
|
||||
<script type="application/javascript">
|
||||
var pc1 = new mozPeerConnection();
|
||||
var pc1 = new mozRTCPeerConnection();
|
||||
pc1.setLocalDescription(function() {});
|
||||
|
||||
var pc2 = new mozPeerConnection();
|
||||
var pc2 = new mozRTCPeerConnection();
|
||||
pc2.setRemoteDescription(function() {});
|
||||
</script>
|
||||
</head>
|
||||
|
Loading…
Reference in New Issue
Block a user