Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: http3 OR http2
- This test failed 6 times in the preceding 30 days. quicksearch this test
- Manifest: gfx/layers/apz/test/mochitest/mochitest.toml
<!DOCTYPE>
<html>
<head>
  <meta charset="utf-8">
  <title>Tests for scroll linked effect</title>
  <script src="/tests/SimpleTest/SimpleTest.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">
var prefs = [
  ["apz.test.mac.synth_wheel_input", true],
  ["apz.disable_for_scroll_linked_effects", false]
];
var subtests = [
  {"file": "helper_scroll_linked_effect_by_wheel.html", prefs},
  {"file": "helper_scroll_linked_effect_detector.html",
   "prefs": [
     ...prefs,
     [ "general.smoothScroll", false ],
  ]}
];
if (isApzEnabled()) {
  SimpleTest.waitForExplicitFinish();
  window.onload = function() {
    runSubtestsSeriallyInFreshWindows(subtests)
    .then(SimpleTest.finish, SimpleTest.finishWithFailure);
  };
}
  </script>
</head>
<body>
</body>
</html>