blob: 72fd9dcc11f7b43fa93050d6eec9bb972b8927de (
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>
<head>
<meta charset="utf-8">
<title>Various zoomToFocusedInput tests</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">
var subtests = [
{"file": "helper_zoomToFocusedInput_scroll.html"},
{"file": "helper_zoomToFocusedInput_multiline.html"},
{"file": "helper_zoomToFocusedInput_iframe.html"},
{"file": "helper_zoomToFocusedInput_fixed_bug1673511.html"},
{"file": "helper_zoomToFocusedInput_nozoom_bug1738696.html"},
];
// These tests rely on mobile viewport sizing, so only run them on
// mobile for now. In the future we can consider running them on
// on desktop, but only in configurations with overlay scrollbars
// (see bug 1608506).
let platform = getPlatform();
if (platform == "android") {
subtests.push(
{"file": "helper_zoomToFocusedInput_nozoom.html"}
);
subtests.push(
{"file": "helper_zoomToFocusedInput_zoom.html"}
);
subtests.push(
{"file": "helper_zoomToFocusedInput_touch-action.html"}
);
}
if (isApzEnabled()) {
SimpleTest.waitForExplicitFinish();
window.onload = function() {
runSubtestsSeriallyInFreshWindows(subtests)
.then(SimpleTest.finish, SimpleTest.finishWithFailure);
};
}
</script>
</head>
<body>
</body>
</html>
|