mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f6d07e86c6
--HG-- extra : rebase_source : 23598d0824be05aa70a71cd683f826d465fce1b6
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<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>
|
|
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
|
|
<script type="application/javascript" src="pc.js"></script>
|
|
<script type="application/javascript" src="templates.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
createHTML({
|
|
bug: "784519",
|
|
title: "setLocalDescription (offer) in 'have-remote-offer'"
|
|
});
|
|
|
|
var test;
|
|
runTest(function () {
|
|
test = new PeerConnectionTest();
|
|
test.setMediaConstraints([{audio: true}], [{audio: true}]);
|
|
test.chain.removeAfter("PC_REMOTE_SET_REMOTE_DESCRIPTION");
|
|
|
|
test.chain.append([[
|
|
"PC_REMOTE_SET_LOCAL_OFFER",
|
|
function (test) {
|
|
test.pcRemote.setLocalDescriptionAndFail(test.pcLocal._last_offer,
|
|
function(err) {
|
|
is(err.name, "INVALID_STATE", "Error is INVALID_STATE");
|
|
test.next();
|
|
} );
|
|
}
|
|
]]);
|
|
|
|
test.run();
|
|
});
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|