gecko/content/media/test/test_error_in_video_document.html
Justin Wood d5c1ce8fbd Additional debugging info for Bug 608634. rs+=cpearce, a=NPOTB
(Bug 608634 - [SeaMonkey] [mochi-1] test_error_in_video_document.html failing)
2010-11-01 23:28:01 -04:00

60 lines
1.7 KiB
HTML

<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=604067
-->
<head>
<title>Test for Bug 604067</title>
<script type="application/javascript" src="/MochiKit/packed.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<script type="text/javascript" src="manifest.js"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=604067">Mozilla Bug 604067</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 604067 **/
var f = document.createElement("iframe");
function check() {
var v = document.body.getElementsByTagName("iframe")[0].contentDocument.body.getElementsByTagName("video")[0];
// Debug info for Bug 608634
ok(true, "iframe src=" + document.body.getElementsByTagName("iframe")[0].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();
}
// Find an error test that we'd think we should be able to play (if it
// wasn't already known to fail).
var t = getPlayableVideo(gErrorTests);
if (t != null) {
f.src = t.name;
f.addEventListener("load", function() {setTimeout(check, 0);}, false);
document.body.appendChild(f);
SimpleTest.waitForExplicitFinish();
} else {
todo(false, "No types supported");
}
</script>
</pre>
</body>
</html>