Revision b483a6d88ef0e0f0ccdf042f5c9b07233b59ca74 authored by Felipe Gomes on 10 January 2012, 16:31:03 UTC, committed by Felipe Gomes on 10 January 2012, 16:31:03 UTC
1 parent 1546d86
Raw File
test_error_in_video_document.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>
back to top