зеркало из https://github.com/mozilla/gecko-dev.git
Bug 521359. Don't enter the NETWORK_LOADED state or fire a media 'load' event. r=doublec
This commit is contained in:
Родитель
a373a6c8db
Коммит
8b9cd6bfe0
|
@ -1392,9 +1392,10 @@ void nsHTMLMediaElement::FirstFrameLoaded(PRBool aResourceFullyLoaded)
|
|||
void nsHTMLMediaElement::ResourceLoaded()
|
||||
{
|
||||
mBegun = PR_FALSE;
|
||||
mNetworkState = nsIDOMHTMLMediaElement::NETWORK_LOADED;
|
||||
mNetworkState = nsIDOMHTMLMediaElement::NETWORK_IDLE;
|
||||
ChangeReadyState(nsIDOMHTMLMediaElement::HAVE_ENOUGH_DATA);
|
||||
DispatchAsyncProgressEvent(NS_LITERAL_STRING("load"));
|
||||
// The download has stopped
|
||||
DispatchAsyncSimpleEvent(NS_LITERAL_STRING("suspend"));
|
||||
}
|
||||
|
||||
void nsHTMLMediaElement::NetworkError()
|
||||
|
|
|
@ -33,18 +33,33 @@ function startTests() {
|
|||
var check = function(test, v) { return function() {
|
||||
checkMetadata(test.name, v, test);
|
||||
}}(test, v);
|
||||
var noLoad = function(test, v) { return function() {
|
||||
ok(false, test.name + " should not fire 'load' event");
|
||||
}}(test, v);
|
||||
var checkEnded = function(test, v) { return function() {
|
||||
if (test.duration) {
|
||||
ok(Math.abs(v.currentTime - test.duration) < 0.1,
|
||||
test.name + " current time at end: " + v.currentTime);
|
||||
}
|
||||
is(v.readyState, v.HAVE_CURRENT_DATA, test.name + " checking readyState");
|
||||
ok(v.readyState != v.NETWORK_LOADED, test.name + " shouldn't report NETWORK_LOADED");
|
||||
ok(v.ended, test.name + " checking playback has ended");
|
||||
--testsWaiting;
|
||||
if (testsWaiting == 0) {
|
||||
setTimeout(startTests, 0);
|
||||
}
|
||||
}}(test, v);
|
||||
var checkSuspended = function(test, v) { return function() {
|
||||
if (v.seenSuspend)
|
||||
return;
|
||||
|
||||
v.seenSuspend = true;
|
||||
ok(true, test.name + " got suspend");
|
||||
--testsWaiting;
|
||||
if (testsWaiting == 0) {
|
||||
setTimeout(startTests, 0);
|
||||
}
|
||||
}}(test, v);
|
||||
v.prevTime = 0;
|
||||
var timeUpdate = function(v) { return function() {
|
||||
ok(v.prevTime <= v.currentTime,
|
||||
|
@ -52,10 +67,15 @@ function startTests() {
|
|||
v.prevTime + " c=" + v.currentTime);
|
||||
v.prevTime = v.currentTime;
|
||||
}}(v);
|
||||
v.addEventListener("load", noLoad, false);
|
||||
v.addEventListener("loadedmetadata", check, false);
|
||||
v.addEventListener("ended", checkEnded, false);
|
||||
v.addEventListener("timeupdate", timeUpdate, false);
|
||||
++testsWaiting;
|
||||
|
||||
// We should get "ended" and "suspend" events for every resource
|
||||
v.addEventListener("ended", checkEnded, false);
|
||||
v.addEventListener("suspend", checkSuspended, false);
|
||||
testsWaiting += 2;
|
||||
|
||||
document.body.appendChild(v);
|
||||
v.play();
|
||||
videos.push(v);
|
||||
|
|
Загрузка…
Ссылка в новой задаче