зеркало из https://github.com/mozilla/gecko-dev.git
Bug 604067 - Test invalid video in iframe gets error state correctly. a=test
This commit is contained in:
Родитель
c1f06f1c91
Коммит
a551687556
|
@ -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>
|
Загрузка…
Ссылка в новой задаче