Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'android' OR http3 OR http2 OR os == 'mac' && os_version == '14.70' && processor == 'x86_64'
- This test failed 5 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}
];
if (isApzEnabled()) {
SimpleTest.waitForExplicitFinish();
window.onload = function() {
runSubtestsSeriallyInFreshWindows(subtests)
.then(SimpleTest.finish, SimpleTest.finishWithFailure);
};
}
</script>
</head>
<body>
</body>
</html>