summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/test_group_scrollframe_activation.html
blob: 2e75f45fc8228d85c131e30b364bcf442dabb5ab (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
47
48
49
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1151663
-->

<head>
  <meta charset="utf-8">
  <title>Tests related to scrollframe activation</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
  <script type="application/javascript" src="apz_test_utils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  <script type="application/javascript">
    if (isApzEnabled()) {
      SimpleTest.waitForExplicitFinish();

      let prefs = [
        ["apz.test.logging_enabled", true]
      ];

      var subtests = [
        { file: "helper_scrollframe_activation_on_load.html", prefs },
        { file: "helper_bug982141.html", prefs },
      ];

      if (getPlatform() != "android") {
        // promiseMoveMouseAndScrollWheelOver in helper_check_dp_size doesn't
        // work on android. Trying to use promiseNativeTouchDrag on android
        // leads to very large display ports (larger than even the bad case
        // below), not sure why.
        subtests.push(
          { file: "helper_check_dp_size.html", prefs }
        );
      }

      window.onload = function() {
        runSubtestsSeriallyInFreshWindows(subtests)
          .then(SimpleTest.finish, SimpleTest.finishWithFailure);
      };
    }
  </script>
</head>

<body>
  <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1151663">Mozilla Bug 1151663</a>
</body>

</html>