Уважаемые программисты, кто подскажет почему не работает звук в универсальном приложении Windows, а тот же код в Apache Cordova работает?

<div class="o" onclick="soundClickE1()"></div>

<script>
function soundClickE1(){(new Audio('http://muzon-muzon.ru/gen/zvuki/E1.mp3')).autoplay=!0;}
</script>

<style>
.o:after{
content: "O";
font: 16px Arial;
padding: 0 4px;
cursor: pointer;
background: #336699;
border: solid 3px #ffffff;
border-radius: 16px;
color: #ffffff;
font-weight: bold;
position: relative;
}
.o:active::after{
background: #ffffff;
border: solid 3px #336699;
color: #336699;
}
</style>