summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/test_group_scroll_linked_effect.html
blob: f29a382fb8b774609b0b05eb1bfdf6993de6c39b (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
<!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}
];

if (isApzEnabled()) {
  SimpleTest.waitForExplicitFinish();
  window.onload = function() {
    runSubtestsSeriallyInFreshWindows(subtests)
    .then(SimpleTest.finish, SimpleTest.finishWithFailure);
  };
}

  </script>
</head>
<body>
</body>
</html>