Properly fail in event_order_loadedmetadata_loadeddata.html

This commit is contained in:
Anthony Ramine 2017-09-29 14:47:57 +02:00
parent 60b5b77ccb
commit 7b7f66f210
3 changed files with 15 additions and 18 deletions

View file

@ -569373,11 +569373,11 @@
"testharness"
],
"html/semantics/embedded-content/media-elements/event_order_canplay_playing.html": [
"31e4dbecfe979d8d9435f2a69938fa8887ff981e",
"7d2254f2362cc90fd7f7573d5c7b7a9bfd29187e",
"testharness"
],
"html/semantics/embedded-content/media-elements/event_order_loadedmetadata_loadeddata.html": [
"1f9a9ee27d7cedb3c7f128276770334780afb523",
"47080891dfd6b2f011fdbb6423e2635ac84eecc4",
"testharness"
],
"html/semantics/embedded-content/media-elements/event_order_loadstart_progress.html": [

View file

@ -1,6 +1,5 @@
[event_order_loadedmetadata_loadeddata.html]
type: testharness
expected: TIMEOUT
[setting src attribute on autoplay audio should trigger loadedmetadata then loadeddata event]
expected: NOTRUN
expected: FAIL

View file

@ -18,16 +18,15 @@ test(function() {
var t = async_test("setting src attribute on autoplay audio should trigger loadedmetadata then loadeddata event", {timeout:5000});
var a = document.getElementById("a");
var found_loadedmetadata = false;
a.addEventListener("loadedmetadata", function() {
a.addEventListener("error", t.unreached_func());
a.addEventListener("loadedmetadata", t.step_func(function() {
found_loadedmetadata = true;
});
a.addEventListener("loadeddata", function() {
t.step(function() {
}));
a.addEventListener("loadeddata", t.step_func(function() {
assert_true(found_loadedmetadata);
});
t.done();
a.pause();
}, false);
}), false);
a.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
}, "audio events - loadedmetadata, then loadeddata");
@ -35,16 +34,15 @@ test(function() {
var t = async_test("setting src attribute on autoplay video should trigger loadedmetadata then loadeddata event", {timeout:5000});
var v = document.getElementById("v");
var found_loadedmetadata = false;
v.addEventListener("loadedmetadata", function() {
v.addEventListener("error", t.unreached_func());
v.addEventListener("loadedmetadata", t.step_func(function() {
found_loadedmetadata = true;
});
v.addEventListener("loadeddata", function() {
t.step(function() {
}));
v.addEventListener("loadeddata", t.step_func(function() {
assert_true(found_loadedmetadata);
});
t.done();
v.pause();
}, false);
}), false);
v.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
}, "video events - loadedmetadata, then loadeddata");
</script>