mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
58 lines
1.5 KiB
HTML
58 lines
1.5 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="/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 **/
|
|
|
|
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);
|
|
is(v.readyState, 0, "Ready state");
|
|
|
|
is(v.networkState, 0, "Network state");
|
|
isnot(v.error, null, "Error object");
|
|
if (v.error)
|
|
is(v.error.code, MediaError.MEDIA_ERR_DECODE, "Error code");
|
|
|
|
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) {
|
|
todo(false, "No types supported");
|
|
} else {
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var f = document.createElement("iframe");
|
|
f.src = t.name;
|
|
f.addEventListener("load", function() { SimpleTest.executeSoon(check); }, false);
|
|
document.body.appendChild(f);
|
|
}
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|