chromium/third_party/blink/web_tests/media/W3C/audio/paused/paused_false_during_play.html

<!doctype html>
<html>
 <head>
  <title>audio events - paused property</title>
  <script src="../../w3cwrapper.js"></script>
 </head>
 <body>
  <p><a href="http://dev.w3.org/html5/spec/Overview.html#mediaevents">spec reference</a></p>
  <audio id="a" autoplay controls>
  </audio>
  <div id="log"></div>
  <script>
var t = async_test("audio.paused should be false during play event", {timeout:30000});
var a = document.getElementById("a");
a.addEventListener("play", function() {
  t.step(function() {
   assert_false(a.paused);
  });
  t.done();
  a.pause();
});
a.src = getAudioURI("http://media.w3.org/2010/05/sound/sound_5") + "?" + new Date() + Math.random();
  </script>
 </body>
</html>