Revision 904da22855cdcf22d76ac514eb7c4f699ab6f389 authored by Anne van Kesteren on 03 May 2018, 08:59:36 UTC, committed by Anne van Kesteren on 03 May 2018, 08:59:36 UTC
1 parent 0cb962b
Raw File
pointerevent_pointerId_scope-iframe.html
<!doctype html>
<html>
    <!--
Test cases for Pointer Events v1 spec
This document references Test Assertions (abbrev TA below) written by Cathy Chan
http://www.w3.org/wiki/PointerEvents/TestAssertions
-->
    <head>
        <title>Pointer Events pointerdown tests</title>
        <meta name="viewport" content="width=device-width">
        <link rel="stylesheet" type="text/css" href="../pointerevent_styles.css">
        <script>
            function run() {
                var target1 = document.getElementById("target1");

                var eventList = ['pointerenter', 'pointerover', 'pointermove', 'pointerout', 'pointerleave'];

                eventList.forEach(function(eventName) {
                    target1.addEventListener(eventName, function (event) {
                        var pass_data = {
                            'pointerId' : event.pointerId,
                            'type' : event.type,
                            'pointerType' : event.pointerType
                        };
                        top.postMessage(JSON.stringify(pass_data), "*");
                    });
               });
            }
        </script>
    </head>
    <body onload="run()">
        <div id="target1" class="touchActionNone">
        </div>
    </body>
</html>
back to top