blob: 3b8bb20f7777b14d5629fead02918aeaf265b953 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="../../../../../media/media-file.js"></script>
</head>
<body>
<video controls></video>
<script>
if (window.internals)
internals.settings.setAllowsPictureInPictureMediaPlayback(true);
function dispatchDidChangePresentationMode()
{
window.opener.notifyDidChangePresentationMode();
}
var video = document.querySelector("video");
if (window.internals)
internals.setMediaElementRestrictions(video, "NoRestrictions");
video.addEventListener("webkitpresentationmodechanged", dispatchDidChangePresentationMode, { capture: false, once: true });
video.addEventListener("canplaythrough", function () { video.webkitSetPresentationMode("picture-in-picture"); }, false);
video.src = findMediaFile("video", "../../../../../media/content/test");
</script>
</body>
</html>