summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/iframe_sandbox_002.htm
blob: e637847714bd267362886437bb16c49ffb6a6796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
    <title>HTML5 video with autoplay attribute.</title>
    <script src="/common/media.js"></script>
</head>
<body>
    <script>
    function do_play(event) {
        parent.window.postMessage("play event fired", "*");
    }

    document.write(
        "<video id='video0' src='" + getVideoURI("/media/green-at-15") + "'" +
        " autoplay onplay='do_play(event);'>"
    );
    </script>
    Your browser does not support HTML5 video.
    </video>
</body>
</html>