зеркало из https://github.com/mozilla/gecko-dev.git
Additional debugging info for Bug 608634. rs+=cpearce, a=NPOTB
(Bug 608634 - [SeaMonkey] [mochi-1] test_error_in_video_document.html failing)
This commit is contained in:
Родитель
8dc60ed6f0
Коммит
c6f8992c9d
|
@ -29,7 +29,13 @@ function check() {
|
|||
|
||||
// Debug info for Bug 608634
|
||||
ok(true, "iframe src=" + document.body.getElementsByTagName("iframe")[0].src);
|
||||
ok(true, "video src=" + v.src);
|
||||
ok(true, "v.readyState=" + v.readyState);
|
||||
ok(true, "v.networkState=" + v.networkState);
|
||||
if (v.error) {
|
||||
ok(true, "v.error.code=" + v.error.code);
|
||||
} else {
|
||||
ok(true, "v.error is null");
|
||||
}
|
||||
|
||||
ok(v.error && v.error.code == MediaError.MEDIA_ERR_DECODE, "Must have error set to MEDIA_ERR_DECODE");
|
||||
SimpleTest.finish();
|
||||
|
|
Загрузка…
Ссылка в новой задаче