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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Tests that perform main-thread scrolling</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 subtests = [
{"file": "helper_scrollby_bug1531796.html"},
// This test checks that scroll anchoring isn't invoked just after an async
// scroll operation (scrolIntoView) was triggered, in other words, the async
// operation happened on the main-thread but it hasn't reached to APZ yet, so
// we don't need to set layout.css.scroll-behavior.spring-constant explicitly
// since the async scroll animation doesn't need to keep running there.
{"file": "helper_scroll_anchoring_smooth_scroll.html"},
{"file": "helper_scroll_anchoring_smooth_scroll_with_set_timeout.html", prefs: [
// Unlike helper_scroll_anchoring_smooth_scroll.html, this test checks that
// scroll anchoring __is__ invoked when an async scroll animation triggered
// by mouse wheel is running so the animation needs to keep running for a
// while.
["layout.css.scroll-behavior.spring-constant", 10]
]},
{"file": "helper_visualscroll_clamp_restore.html", prefs: [
["apz.test.logging_enabled", true],
]},
{"file": "helper_smoothscroll_spam.html"},
{"file": "helper_smoothscroll_spam_interleaved.html"},
{"file": "helper_mainthread_scroll_bug1662379.html", prefs: [
["apz.test.logging_enabled", true],
]},
{"file": "helper_bug1519339_hidden_smoothscroll.html", prefs: [
["apz.scrollend-event.content.enabled", true]
]},
];
if (isApzEnabled()) {
SimpleTest.waitForExplicitFinish();
window.onload = function() {
runSubtestsSeriallyInFreshWindows(subtests)
.then(SimpleTest.finish, SimpleTest.finishWithFailure);
};
}
</script>
</head>
<body>
</body>
</html>
|