haikuwebkit/LayoutTests/media/W3C/video/networkState/networkState_property_exist...

21 lines
476 B
HTML

<!doctype html>
<html>
<head>
<title>video.networkState - 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(
"networkState" in document.getElementById("v"),
"videoElement.networkState property exists");
});
</script>
</body>
</html>