blob: f14b5e94d8f68e103f6682760b4e42f6ab2196b1 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>video-main-content-allow</title>
<script src="video-test.js"></script>
<script src="media-file.js"></script>
<script>
function go() {
video = document.createElement('video');
run('internals.setMediaElementRestrictions(video, "RequireUserGestureForVideoRateChange,OverrideUserGestureRequirementForMainContent")');
document.body.appendChild(video);
video.src = findMediaFile('video', 'content/test');
waitForEvent('canplaythrough', canPlayThrough);
}
function canPlayThrough() {
var promise = video.play();
waitForEventAndFail('playing');
setTimeout(didNotBeginPlaying, 100);
promise.catch(didNotBeginPlaying);
}
function didNotBeginPlaying() {
logResult(true, 'Did not begin playing');
endTest();
}
</script>
<style>
video {
width: 600px;
height: 400px;
visibility: hidden;
}
</style>
</head>
<body onload="go()">
</body>
</html>