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