chromium/content/test/data/media/autoplay/autoplay-disabled.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Activation delegation test</title>
<video id=video src="../bear.webm"></video>
<iframe></iframe>
<script>
function attemptPlay() {
  return document.getElementById('video').play()
    .then(() => true)
    .catch(() => false);
}
</script>