mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
MozReview-Commit-ID: 2YnWEO98M2e --HG-- extra : rebase_source : 757ce29a8049d5b800530f331f09f57bf32e14c9
15 lines
347 B
HTML
15 lines
347 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
|
|
<meta content="utf-8" http-equiv="encoding">
|
|
</head>
|
|
<body>
|
|
<audio id="testAudio" src="audio.ogg" preload="none"></audio>
|
|
<script type="text/javascript">
|
|
|
|
var audio = document.getElementById("testAudio");
|
|
audio.play();
|
|
audio.pause();
|
|
|
|
</script>
|
|
</body>
|