blob: a44b9683e8bb6361dd4d01bfabd532bff62bd077 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>video.networkState - default state</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() {
var v = document.getElementById("v");
assert_equals(
v.networkState,
v.NETWORK_EMPTY,
"videoElement.networkState should be NETWORK_EMPTY to begin with");
});
</script>
</body>
</html>