chromium/third_party/blink/web_tests/media/W3C/video/error/error_onerror_called_on_bogus_source.html

<!doctype html>
<html>
 <head>
  <title>video.error - MEDIA_ERR_SRC_NOT_SUPPORTED constant is 4</title>
  <script src="../../w3cwrapper.js"></script>
 </head>
 <body>
  <p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-error">spec reference</a></p>
  <video id="v" src="." onerror="test_error()">
  </video>
  <div id="log"></div>
  <script>
var t = async_test("videoElement.onerror is triggered on bogus source");
function test_error() {
 var v = document.getElementById("v");
 t.step(function() {
  assert_equals(
   v.error.code,
   4,
   "videoElement.error MEDIA_ERR_SRC_NOT_SUPPORTED constant is 4");
 });
 t.done();
}
  </script>
 </body>
</html>