summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/test/mochitest/test_group_double_tap_zoom-2.html
blob: 3fb4f9163c197b8085ca5e67bc016a36ae395dc1 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Various zoom-related tests that spawn in new windows</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="apz_test_utils.js"></script>
    <script type="application/javascript" src="apz_test_native_event_utils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">

// Increase the tap timeouts so the double-tap is still detected in case of
// random delays during testing.
var doubletap_prefs = [
  ["ui.click_hold_context_menus.delay", 10000],
  ["apz.max_tap_time", 10000],
];

var longeranimation_doubletap_prefs = [
  ...doubletap_prefs,
  ["apz.zoom_animation_duration_ms", 1000],
];

var logging_and_doubletap_prefs = [
  ...doubletap_prefs,
  ["apz.test.logging_enabled", true],
];

var disable_default_zoomin_and_doubletap_prefs = [
  ...doubletap_prefs,
  ["apz.doubletapzoom.defaultzoomin", "1.0"],
];

var meta_viewport_and_doubletap_prefs = [
  ...doubletap_prefs,
  ["dom.meta-viewport.enabled", true],
];

var subtests = [
  {"file": "helper_doubletap_zoom_smooth.html", "prefs": longeranimation_doubletap_prefs},
  {"file": "helper_doubletap_zoom_fixedpos_overflow.html", "prefs": logging_and_doubletap_prefs},
  {"file": "helper_doubletap_zoom_hscrollable.html", "prefs": disable_default_zoomin_and_doubletap_prefs},
  {"file": "helper_doubletap_zoom_scrolled_overflowhidden.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_shadowdom.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_tablecell.html", "prefs": disable_default_zoomin_and_doubletap_prefs},
  {"file": "helper_doubletap_zoom_gencon.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_hscrollable2.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_nothing.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_noscroll.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_square.html", "prefs": doubletap_prefs},
  {"file": "helper_doubletap_zoom_oopif.html", "prefs": doubletap_prefs},
  {"file": "helper_disallow_doubletap_zoom_inside_oopif.html", "prefs": meta_viewport_and_doubletap_prefs},
  {"file": "helper_doubletap_zoom_nothing_listener.html", "prefs": doubletap_prefs},
];

if (getPlatform() == "mac") {
  subtests.push(
    {"file": "helper_doubletap_zoom_smooth.html?touchpad", "prefs": longeranimation_doubletap_prefs},
    {"file": "helper_doubletap_zoom_fixedpos_overflow.html?touchpad", "prefs": logging_and_doubletap_prefs},
    {"file": "helper_doubletap_zoom_hscrollable.html?touchpad", "prefs": disable_default_zoomin_and_doubletap_prefs},
    {"file": "helper_doubletap_zoom_scrolled_overflowhidden.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_shadowdom.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_tablecell.html?touchpad", "prefs": disable_default_zoomin_and_doubletap_prefs},
    {"file": "helper_doubletap_zoom_gencon.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_hscrollable2.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_nothing.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_noscroll.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_square.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_doubletap_zoom_oopif.html?touchpad", "prefs": doubletap_prefs},
    {"file": "helper_disallow_doubletap_zoom_inside_oopif.html?touchpad", "prefs": meta_viewport_and_doubletap_prefs},
    {"file": "helper_doubletap_zoom_nothing_listener.html?touchpad", "prefs": doubletap_prefs},
  );
}

if (isApzEnabled()) {
  // This has a lot of subtests, and Android emulators are slow.
  SimpleTest.requestLongerTimeout(2);
  SimpleTest.waitForExplicitFinish();
  window.onload = function() {
    runSubtestsSeriallyInFreshWindows(subtests)
    .then(SimpleTest.finish, SimpleTest.finishWithFailure);
  };
}

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