Bug 1349456 part 3 - test element become tainted while captured via MozCaptureStream(); r?jwwang draft
authorKaku Kuo <kaku@mozilla.com>
Wed, 22 Mar 2017 15:03:19 +0800
changeset 502693 e3d9be125ef24e72c2e9930a8d0ffb2dfbcbaea4
parent 502692 8e68361d4eb1455093ad567ad5b70029093a967a
child 502718 f03c7ee25d267f032a33401d3f01f7d689d26021
push id50358
push userbmo:kaku@mozilla.com
push dateWed, 22 Mar 2017 07:06:35 +0000
reviewersjwwang
bugs1349456
milestone55.0a1
Bug 1349456 part 3 - test element become tainted while captured via MozCaptureStream(); r?jwwang MozReview-Commit-ID: 4nJHwZjZ2zG
dom/media/test/mochitest.ini
dom/media/test/test_background_video_tainted_by_capturestream.html
--- a/dom/media/test/mochitest.ini
+++ b/dom/media/test/mochitest.ini
@@ -1144,16 +1144,19 @@ tags = suspend
 skip-if = toolkit == 'android' # bug 1346705
 tags = suspend
 [test_background_video_suspend.html]
 skip-if = toolkit == 'android' # android(bug 1304480)
 tags = suspend
 [test_background_video_suspend_ends.html]
 skip-if = toolkit == 'android' # bug 1295884, android(bug 1304480, bug 1232305)
 tags = suspend
+[test_background_video_tainted_by_capturestream.html]
+skip-if = toolkit == 'android' # bug 1346705
+tags = suspend
 [test_background_video_tainted_by_drawimage.html]
 skip-if = toolkit == 'android' # bug 1346705
 tags = suspend
 [test_background_video_drawimage_with_suspended_video.html]
 skip-if = toolkit == 'android' # bug 1346705
 tags = suspend
 
 [test_temporary_file_blob_video_plays.html]
new file mode 100644
--- /dev/null
+++ b/dom/media/test/test_background_video_tainted_by_capturestream.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Test Background Video Is Tainted By captureStream</title>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<script src="manifest.js"></script>
+<script src="background_video.js"></script>
+<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
+<script type="text/javascript">
+"use strict";
+
+var manager = new MediaTestManager;
+
+function captureVideoAsStream(v) {
+  let stream = v.mozCaptureStream();
+}
+
+startTest({
+  desc: 'Test Background Video Is Tainted By captureStream',
+  prefs: [
+    [ "media.test.video-suspend", true ],
+    [ "media.suspend-bkgnd-video.enabled", true ],
+    [ "media.suspend-bkgnd-video.delay-ms", 1000 ]
+  ],
+  tests: gDecodeSuspendTests,
+  runTest: (test, token) => {
+    ok(true, `${test.name}`);
+    let v = appendVideoToDoc(test.name, token);
+    manager.started(token);
+
+    waitUntilPlaying(v)
+      .then(() => {
+        captureVideoAsStream(v);
+        ok(v.hasSuspendTaint(), "Video is tainted after captured");
+        return checkVideoDoesntSuspend(v);
+      })
+      .then(() => {
+        ok(true, 'Video ended before decode was suspended');
+        manager.finished(token);
+      })
+      .catch((e) => {
+        ok(false, 'Test failed: ' + e.toString());
+        manager.finished(token);
+      });
+  }
+});
+</script>
\ No newline at end of file