Bug 1349456 part 3 - test element become tainted while captured via MozCaptureStream(); r=jwwang

MozReview-Commit-ID: 4nJHwZjZ2zG

--HG--
extra : rebase_source : 4e43cea30088b3e1f4858ace2a1bbe7f85c540fe
This commit is contained in:
Kaku Kuo 2017-03-22 15:03:19 +08:00
Родитель c4629a637d
Коммит 871c76462e
2 изменённых файлов: 49 добавлений и 0 удалений

Просмотреть файл

@ -1149,6 +1149,9 @@ 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

Просмотреть файл

@ -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>