mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-09 07:32:04 +00:00
32 lines
828 B
HTML
32 lines
828 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script type="application/javascript">var scriptRelativePath = "../";</script>
|
|
<script type="application/javascript" src="../pc.js"></script>
|
|
<script type="application/javascript" src="../blacksilence.js"></script>
|
|
<script type="application/javascript" src="identityPcTest.js"></script>
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script type="application/javascript">
|
|
createHTML({
|
|
title: "Non-isolated media entering an isolated session becomes isolated",
|
|
bug: "996238"
|
|
});
|
|
|
|
function theTest() {
|
|
// Override the remote media capture options to remove isolation for the
|
|
// remote party; the test verifies that the media it receives on the local
|
|
// side is isolated anyway.
|
|
identityPcTest({
|
|
audio: true,
|
|
video: true
|
|
});
|
|
}
|
|
runNetworkTest(theTest);
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|