Bug 567954 - Use onloadeddata to contorl the suspend and resume of MediaResource. r=jwwang.

MozReview-Commit-ID: CSHDXuEf5pD

--HG--
extra : rebase_source : 0fa06adf8dcf25e8403f4d82413684a7eb3332e1
This commit is contained in:
Chia-hung Tai 2016-10-03 17:48:03 +08:00
Родитель aa29135011
Коммит 6cbbd57bb8
2 изменённых файлов: 65 добавлений и 45 удалений

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

@ -492,6 +492,7 @@ support-files =
owl-short.mp3
owl-short.mp3^headers^
parser.vtt
pixel_aspect_ratio.mp4
r11025_msadpcm_c1.wav
r11025_msadpcm_c1.wav^headers^
r11025_s16_c1.wav
@ -796,7 +797,7 @@ skip-if = toolkit == 'gonk' && debug # bug 1065924
[test_mediatrack_replay_from_end.html]
[test_metadata.html]
[test_mixed_principals.html]
skip-if = true # bug 567954 and intermittent leaks
skip-if = os == 'win' && os_version == '5.1' # Skip XP. See bug Bug 1311231
[test_mozHasAudio.html]
[test_multiple_mediastreamtracks.html]
[test_networkState.html]

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

@ -14,60 +14,79 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=489415
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=489415">Mozilla Bug 489415</a>
<p id="display"></p>
<video id="v1" autoplay onended="loaded('v1')"></video>
<video id="v2" autoplay onended="loaded('v2')"></video>
<video id="v1" preload="metadata" onended="onendedcb('v1')"></video>
<video id="v2" preload="metadata" onended="onendedcb('v2')"></video>
<pre id="test">
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();
var pushPrefs = (...p) => new Promise(r => SpecialPowers.pushPrefEnv({set: p}, r));
var throwOutside = e => setTimeout(() => { throw e; });
var v1 = document.getElementById("v1");
var v2 = document.getElementById("v2");
var count = 0;
var resource = getPlayableVideo(gSeekTests);
if (resource != null) {
var count = 0;
function loaded(id) {
var c = document.createElement("canvas");
var ctx = c.getContext("2d");
var v = document.getElementById(id);
ctx.drawImage(v, 0, 0);
try {
c.toDataURL();
ok(false, "Failed to throw exception in toDataURL for " + id);
} catch (ex) {
ok(true, "Threw exception in toDataURL for " + id);
}
if (++count == 2) {
SimpleTest.finish();
}
function onendedcb(id) {
var c = document.createElement("canvas");
var ctx = c.getContext("2d");
var v = document.getElementById(id);
ctx.drawImage(v, 0, 0);
try {
c.toDataURL();
ok(false, "Failed to throw exception in toDataURL for " + id);
} catch (ex) {
ok(true, "Threw exception in toDataURL for " + id);
}
if (++count == 2) {
SimpleTest.finish();
}
// Generate a random key. The first load with that key will return
// data, the second and subsequent loads with that key will return a redirect
// to a different origin ('localhost:8888' will be redirected to 'example.org',
// and 'example.org' will be redirected to 'localhost:8888'). We rely on the
// fact that Ogg will do a seek to the end of the resource, triggering a new
// load with the same key which will return a same-origin resource.
// Loading data from two different origins should be detected by the media
// cache and result in a null principal so that the canvas usage above fails.
var key = Math.floor(Math.random()*100000000);
// In v1, try loading from same-origin first and then getting redirected to
// another origin.
v1.src = "http://mochi.test:8888/tests/dom/media/test/dynamic_redirect.sjs?key=v1_" + key + "&res=" + resource.name;
v1.load();
// In v2, try loading cross-origin first and then getting redirected to
// our origin.
v2.src = "http://example.org/tests/dom/media/test/dynamic_redirect.sjs?key=v2_" + key + "&res=" + resource.name;
v2.load();
} else {
todo(false, "No types supported");
}
function testMixedPrincipals(resource) {
if (!resource) {
todo(false, "No types supported");
return;
}
// Make sure the media cache size(50MB) is large enough that the data could
// be download in MediaCache completely.
return pushPrefs(['media.cache_size', 50*1024])
.then(() => {
// Generate a random key. The first load with that key will return
// data, the second and subsequent loads with that key will return a redirect
// to a different origin ('localhost:8888' will be redirected to 'example.org',
// and 'example.org' will be redirected to 'localhost:8888'). We rely on the
// fact that Ogg will do a seek to the end of the resource, triggering a new
// load with the same key which will return a same-origin resource.
// Loading data from two different origins should be detected by the media
// cache and result in a null principal so that the canvas usage above fails.
var key = Math.floor(Math.random()*100000000);
// In v1, try loading from same-origin first and then getting redirected to
// another origin.
v1.src =
"http://mochi.test:8888/tests/dom/media/test/dynamic_redirect.sjs?key=v1_" +
key + "&res=" + resource.name;
v1.onloadeddata = function () {
// To limit readahead, avoid racing with playback and "catching up" mode.
v1.play();
}
// In v2, try loading cross-origin first and then getting redirected to
// our origin.
v2.src = "http://example.org/tests/dom/media/test/dynamic_redirect.sjs?key=v2_" + key + "&res=" + resource.name;
v2.onloadeddata = function () {
// To limit readahead, avoid racing with playback and "catching up" mode.
v2.play();
}
});
}
testMixedPrincipals({ name:"pixel_aspect_ratio.mp4", type:"video/mp4", duration:28})
.catch(e => throwOutside(e));
</script>
</pre>