mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
48 lines
1.5 KiB
HTML
48 lines
1.5 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=872377
|
|
-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for Bug 872377 and Bug 928304</title>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="head.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
createHTML({
|
|
bug: "928304",
|
|
title: "test toJSON() on mozRTCSessionDescription and mozRTCIceCandidate"
|
|
});
|
|
|
|
runTest(function () {
|
|
/** Test for Bug 872377 **/
|
|
|
|
var rtcSession = new mozRTCSessionDescription({ sdp: "Picklechips!",
|
|
type: "offer" });
|
|
var jsonCopy = JSON.parse(JSON.stringify(rtcSession));
|
|
for (key in rtcSession) {
|
|
if (typeof(rtcSession[key]) == "function") continue;
|
|
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.");
|
|
}
|
|
SimpleTest.finish();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|