chromium/third_party/blink/web_tests/media/W3C/video/currentSrc/currentSrc_empty_if_no_src.html

<!doctype html>
<html>
 <head>
  <title>video.currentSrc - empty if no source</title>
  <script src="../../w3cwrapper.js"></script>
 </head>
 <body>
  <p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-currentsrc">spec reference</a></p>
  <video id="v">
  </video>
  <div id="log"></div>
  <script>
test(function() {
 assert_equals(
  document.getElementById("v").currentSrc,
  "",
  "videoElement.currentSrc should be empty if there is no source");
});
  </script>
 </body>
</html>