blob: 43f82e2066cd4cfaaa9e2a2b9f947d5f3553e947 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video.readyState - existence test</title>
<script src="../../w3cwrapper.js"></script>
</head>
<body>
<p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-networkstate">spec reference</a></p>
<video id="v">
</video>
<div id="log"></div>
<script>
test(function() {
assert_true(
"readyState" in document.getElementById("v"),
"videoElement.readyState property exists");
});
</script>
</body>
</html>