Bug 604067 - Test invalid video in iframe gets error state correctly. a=test

This commit is contained in:
Chris Pearce 2010-10-17 08:58:20 +13:00
Родитель c1f06f1c91
Коммит a551687556
2 изменённых файлов: 49 добавлений и 0 удалений

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

@ -109,6 +109,7 @@ _TEST_FILES = \
test_decoder_disable.html \
test_delay_load.html \
test_error_on_404.html \
test_error_in_video_document.html \
test_info_leak.html \
test_load.html \
test_load_candidates.html \

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

@ -0,0 +1,48 @@
<!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];
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>