chromium/third_party/blink/web_tests/media/W3C/audio/src/src_reflects_attribute_not_source_elements.html

<!doctype html>
<html>
 <head>
  <title>audio.src - reflection test</title>
  <script src="../../w3cwrapper.js"></script>
 </head>
 <body>
  <p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-src">spec reference</a></p>
  <audio id="audio" src="foo">
   <source src="barbaz" />
  </audio>
  <div id="log"></div>
  <script>
test(function() {
 assert_true(
  document.getElementById("audio").src.indexOf("barbaz") == -1,
  "audioElement.src should reflect src attribute, not source child elements");
});
  </script>
 </body>
</html>