blob: 37a320572ed00929817eee76aef03adb6e253c6e [file] [log] [blame]
<html>
<head>
<title>Autoplay Test Page</title>
</head>
<body>
<iframe id=subframe></iframe>
<video id=video>
<source src=bigbuck.webm type=video/webm />
</video>
<script>
function tryPlayback() {
const video = document.getElementById('video');
video.play().then(() => {
window.domAutomationController.send(true);
}, (e) => {
window.domAutomationController.send(e.name != 'NotAllowedError');
});
}
</script>
</body>
</html>