mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 928304 Add jsonifier to mozRTCIceCandidate to simplify passing the candidate via signalling. r=jib
This commit is contained in:
parent
aa953866aa
commit
da3b516b7e
@ -5,7 +5,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=872377
|
||||
-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Test for Bug 872377</title>
|
||||
<title>Test for Bug 872377 and Bug 928304</title>
|
||||
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
||||
<script type="application/javascript">
|
||||
@ -20,10 +20,22 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=872377
|
||||
is(rtcSession[key], jsonCopy[key], "key " + key + " should match.");
|
||||
}
|
||||
|
||||
/** Test for Bug 928304 **/
|
||||
|
||||
var rtcIceCandidate = new mozRTCIceCandidate({ candidate: "dummy",
|
||||
sdpMid: "test",
|
||||
sdpMLineIndex: 3 });
|
||||
jsonCopy = JSON.parse(JSON.stringify(rtcIceCandidate));
|
||||
for (key in rtcIceCandidate) {
|
||||
if (typeof(rtcIceCandidate[key]) == "function") continue;
|
||||
is(rtcIceCandidate[key], jsonCopy[key], "key " + key + " should match.");
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=872377">Mozilla Bug 872377</a>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=928304">Mozilla Bug 928304</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
|
@ -21,7 +21,5 @@ interface mozRTCIceCandidate {
|
||||
attribute DOMString? sdpMid;
|
||||
attribute unsigned short? sdpMLineIndex;
|
||||
|
||||
// Bug 863402 serializer support
|
||||
//
|
||||
//serializer = {attribute};
|
||||
jsonifier;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user