chromium/third_party/blink/web_tests/media/W3C/audio/preload/preload_reflects_none_autoplay.html

<!doctype html>
<html>
 <head>
  <title>audio.preload - reflection test</title>
  <script src="../../w3cwrapper.js"></script>
 </head>
 <body>
  <p><a href="http://dev.w3.org/html5/spec/Overview.html#dom-media-preload">spec reference</a></p>
  <audio id="audio" autoplay preload="none">
  </audio>
  <div id="log"></div>
  <script>
test(function() {
 assert_equals(
  document.getElementById("audio").preload,
  "none",
  "audioElement.preload reflects 'none' value even if autoplay attribute is present");
});
  </script>
 </body>
</html>