chromium/third_party/blink/web_tests/media/W3C/video/networkState/networkState_initial.html

<!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>