Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '22.04' && display == 'wayland'
- Manifest: gfx/layers/apz/test/mochitest/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<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>