blob: 42f1b1e175bea285ae1195faf3b4ed0a299036fc [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>video-create-with-user-gesture</title>
<script src=media-file.js></script>
<script src=video-test.js></script>
<script>
function runTest() {
run('window.internals.settings.setVideoPlaybackRequiresUserGesture(true);');
runWithKeyDown(() => {
run('video = document.createElement("video")');
});
waitForEventAndEnd('playing');
run('video.src = findMediaFile("video", "content/test")');
run('video.setAttribute("autoplay", "")');
run('document.body.appendChild(video)');
failTestIn(10000);
}
</script>
</head>
<body onload="runTest()">
</body>
</html>