blob: ec8ece6035e3bb994d096f68c38511228c50ee80 [file] [log] [blame]
<!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>