| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 
 | <html>
    <head>
        <script>
            function pageLoaded() {
                try {
                    window.webkit.messageHandlers.pictureInPictureChangeHandler.postMessage('load');
                } catch(e) { }
            }
            function play() {
                document.getElementById("audio").play();
            }
            function didStartPlaying() {
                try {
                    window.webkit.messageHandlers.pictureInPictureChangeHandler.postMessage('playing');
                } catch(e) { }
            }
        </script>
    </head>
    <body onload="pageLoaded()">
        <audio controls id="audio" src="silence-long.m4a" onplaying="didStartPlaying()" />
    </body>
</html>
 |