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

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