summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_getUserMedia_stopVideoStream.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/tests/mochitest/test_getUserMedia_stopVideoStream.html')
-rw-r--r--dom/media/tests/mochitest/test_getUserMedia_stopVideoStream.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/dom/media/tests/mochitest/test_getUserMedia_stopVideoStream.html b/dom/media/tests/mochitest/test_getUserMedia_stopVideoStream.html
new file mode 100644
index 000000000..823e42a18
--- /dev/null
+++ b/dom/media/tests/mochitest/test_getUserMedia_stopVideoStream.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <script type="application/javascript" src="mediaStreamPlayback.js"></script>
+</head>
+<body>
+<pre id="test">
+<script type="application/javascript">
+ createHTML({ title: "getUserMedia Stop Video Stream", bug: "822109" });
+ /**
+ * Run a test to verify that we can start a video stream in a
+ * media element, call stop() on the stream, and successfully get an
+ * ended event fired.
+ */
+ runTest(function () {
+ return getUserMedia({video: true})
+ .then(stream => {
+ var testVideo = createMediaElement('video', 'testVideo');
+ var streamPlayback = new LocalMediaStreamPlayback(testVideo, stream);
+
+ return streamPlayback.playMediaWithDeprecatedStreamStop(false);
+ });
+ });
+
+</script>
+</pre>
+</body>
+</html>