summaryrefslogtreecommitdiffstats
path: root/dom/events/test/pointerevents/test_wpt_pointerevent_boundary_events_in_capturing-manual.html
blob: 24aeb6d9a6c268f6f0385c247441147f0ec2a42c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE HTML>
<html>
  <head>
    <meta charset="utf-8">
    <title>W3C pointerevent_boundary_events_in_capturing-manual.html in Mochitest form</title>
    <script src="/tests/SimpleTest/SimpleTest.js"></script>
    <script src="/tests/SimpleTest/EventUtils.js"></script>
    <script type="text/javascript" src="mochitest_support_external.js"></script>
    <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
    <script type="text/javascript">
      SimpleTest.waitForExplicitFinish();
      function startTest() {
        runTestInNewWindow("wpt/pointerevent_boundary_events_in_capturing-manual.html", true);
      }
      function executeTest(int_win) {
        sendMouseEvent(int_win, "target0", "mousemove");
        sendMouseEvent(int_win, "target0", "mousedown");
        sendMouseEvent(int_win, "target0", "mousemove", {buttons: 1});
        sendMouseEvent(int_win, "target0", "mousemove", {buttons: 1});
        sendMouseEvent(int_win, "target0", "mouseup");

        window.addEventListener("message", function(aEvent) {
          if (aEvent.data == "Test Touch") {
            // Synthesize touch events to run this test.
            sendTouchEvent(int_win, "target0", "touchstart");
            sendTouchEvent(int_win, "target0", "touchmove", {offsetX: 10});
            sendTouchEvent(int_win, "target0", "touchmove", {offsetX: 15});
            sendTouchEvent(int_win, "target0", "touchmove", {offsetX: 20});
            sendTouchEvent(int_win, "target0", "touchend");
            window.postMessage("Test Pen", "*");
          } else if (aEvent.data == "Test Pen") {
            // Synthesize pen events to run this test.
            sendMouseEvent(int_win, "target0", "mousemove", {inputSource:MouseEvent.MOZ_SOURCE_PEN});
            sendMouseEvent(int_win, "target0", "mousedown", {inputSource:MouseEvent.MOZ_SOURCE_PEN});
            sendMouseEvent(int_win, "target0", "mousemove", {inputSource:MouseEvent.MOZ_SOURCE_PEN, buttons: 1});
            sendMouseEvent(int_win, "target0", "mousemove", {inputSource:MouseEvent.MOZ_SOURCE_PEN, buttons: 1});
            sendMouseEvent(int_win, "target0", "mouseup", {inputSource:MouseEvent.MOZ_SOURCE_PEN});
          }
        });
        window.postMessage("Test Touch", "*");
      }
    </script>
  </head>
  <body>
  </body>
</html>