blob: f20773948c055396ce200baae75e08de3bac5f62 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<video id="video">
<source src="video-with-audio.mp4">
</video>
<button id="enter-pip" onclick="document.querySelector('video').webkitSetPresentationMode('picture-in-picture')">enter pip</button>
<script>
if ("mediaSession" in navigator) {
navigator.mediaSession.setActionHandler("skipad", () => {
});
}
</script>
</html>