Bug 1295921 - P7: Test drawImage gets a non-white image from suspended video. r?jwwang draft
authorDan Glastonbury <dglastonbury@mozilla.com>
Wed, 14 Sep 2016 17:04:12 +1000
changeset 450827 7751fe83806471fb98f124018daab78055fdc551
parent 450826 7f516a0e3426d3214d71ae4697d4b456016a8504
child 450828 30ec63c26d6f174a8a97ee01e09f0835f76c3ae3
push id38957
push userbmo:dglastonbury@mozilla.com
push dateMon, 19 Dec 2016 02:15:56 +0000
reviewersjwwang
bugs1295921
milestone53.0a1
Bug 1295921 - P7: Test drawImage gets a non-white image from suspended video. r?jwwang Test that drawImage call using element source with a video, that has video decode suspended, will get image and a white frame from the blank decoder. MozReview-Commit-ID: LM0jLPWwxU7
dom/media/test/mochitest.ini
dom/media/test/test_background_video_drawimage_with_suspended_video.html
--- a/dom/media/test/mochitest.ini
+++ b/dom/media/test/mochitest.ini
@@ -959,9 +959,12 @@ tags = suspend
 [test_background_video_no_suspend_short_vid.html]
 tags = suspend
 [test_background_video_suspend.html]
 tags = suspend
 [test_background_video_suspend_ends.html]
 tags = suspend
 [test_background_video_tainted_by_drawimage.html]
 tags = suspend
+[test_background_video_drawimage_with_suspended_video.html]
+tags = suspend
+
 [test_temporary_file_blob_video_plays.html]
new file mode 100644
--- /dev/null
+++ b/dom/media/test/test_background_video_drawimage_with_suspended_video.html
@@ -0,0 +1,78 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Test Background Video Displays Video Frame via drawImage When Suspended</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"/>
+<style>
+video, canvas {
+  border: 1px solid black;
+}
+</style>
+<script type="text/javascript">
+"use strict";
+
+var manager = new MediaTestManager;
+
+function drawVideoToCanvas(v) {
+  console.log('drawVideoToCanvas');
+  let w = v.width,
+      h = v.height,
+      c = document.createElement('canvas');
+  c.width = 4;
+  c.height = 4;
+  c.style.width = 64;
+  c.style.height = 64;
+  document.body.appendChild(c);
+
+  let gfx = c.getContext('2d');
+  if (!gfx) {
+    throw Error("Unable to obtain context '2d' from canvas");
+  }
+
+  gfx.drawImage(v, 0, 0, 4, 4);
+  let imageData = gfx.getImageData(0, 0, 4, 4);
+  let pixels = imageData.data;
+
+  // Check that pixels aren't all the same colour.
+  // Implements by checking against rgb of the first pixel.
+  let rr = pixels[0],
+      gg = pixels[1],
+      bb = pixels[2],
+      allSame = true;
+
+  for (let i = 0; i < 4*4; i++) {
+    let r = pixels[4*i+0];
+    let g = pixels[4*i+1];
+    let b = pixels[4*i+2];
+    if (r != rr || g != gg || b != bb) {
+      allSame = false;
+    }
+  }
+
+  ok(!allSame, "Pixels aren't all the same color");
+}
+
+startTest({
+  desc: 'Test Background Video Displays Video Frame via drawImage When Suspended',
+  prefs: [
+    [ "media.test.video-suspend", true ],
+    [ "media.suspend-bkgnd-video.enabled", true ],
+    [ "media.suspend-bkgnd-video.delay-ms", 500 ]
+  ],
+  tests: gDecodeSuspendTests,
+  runTest: (test, token) => {
+    let v = appendVideoToDoc(test.name, token);
+    manager.started(token);
+
+    waitUntilPlaying(v)
+      .then(() => testVideoSuspendsWhenHidden(v))
+      .then(() => {
+        drawVideoToCanvas(v);
+        manager.finished(token);
+      });
+  }
+});
+</script>
+