summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/steeplechase_long/test_peerConnection_basicAudio_long.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/tests/mochitest/steeplechase_long/test_peerConnection_basicAudio_long.html')
-rw-r--r--dom/media/tests/mochitest/steeplechase_long/test_peerConnection_basicAudio_long.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/dom/media/tests/mochitest/steeplechase_long/test_peerConnection_basicAudio_long.html b/dom/media/tests/mochitest/steeplechase_long/test_peerConnection_basicAudio_long.html
new file mode 100644
index 000000000..ef92c0c95
--- /dev/null
+++ b/dom/media/tests/mochitest/steeplechase_long/test_peerConnection_basicAudio_long.html
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML>
+
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<html>
+<head>
+ <script type="application/javascript" src="long.js"></script>
+ <script type="application/javascript" src="pc.js"></script>
+</head>
+<body>
+<pre id="test">
+<script type="application/javascript">
+ createHTML({
+ bug: "796892",
+ title: "Basic audio-only peer connection",
+ visible: true
+ });
+
+ var STEEPLECHASE_TIMEOUT = 1000 * 3600 * 3;
+ var test;
+ runNetworkTest(function (options) {
+ options = options || {};
+ options.commands = makeDefaultCommands();
+ options.commands.push(generateIntervalCommand(verifyConnectionStatus,
+ 1000 * 10,
+ STEEPLECHASE_TIMEOUT));
+
+ test = new PeerConnectionTest(options);
+ test.setMediaConstraints([{audio: true, fake: false}],
+ [{audio: true, fake: false}]);
+ test.run();
+ });
+</script>
+</pre>
+</body>
+</html>