blob: 3d6554012bc321f60ce5ad2f5433a614a4edf13e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<title>MediaSessionDefaultTest1</title>
</head>
<body>
<script>
const audio1 = document.createElement("audio");
audio1.src = "audio/owl.mp3";
window.onload = () => {
audio1.play();
};
</script>
</body>
</html>
|