summaryrefslogtreecommitdiffstats
path: root/tests/auto/core/origins/resources/media.html
blob: 091485b61b69c60af5b7bc30fcd39b329c73fa9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
    <head>
        <title>Media</title>
        <script>
            function addAudio(src) {
                let aud = document.createElement('audio')
                aud.src = src
                document.getElementsByTagName("body")[0].appendChild(aud)
             }
        </script>
    </head>
    <body>
    </body>
</html>