audio-controls-002.html (439B)
1 <!DOCTYPE html> 2 <title>HTML audio with controls via Web APIs</title> 3 <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> 4 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#embedded-content-rendering-rules"> 5 <link rel="mismatch" href="/common/blank.html"> 6 7 <audio id="target"></audio> 8 9 <script> 10 document.body.offsetTop; 11 document.getElementById("target").setAttribute("controls", ""); 12 </script>