Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test failed 104 times in the preceding 30 days. quicksearch this test
- Manifest: gfx/layers/apz/test/mochitest/mochitest.toml
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Various tests that spawn in out-of-process iframes.</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 prefs = [
];
var animation_prefs = [
...prefs,
// To avoid throttling requestAnimationFrame callbacks in invisible
// iframes
["layout.throttled_frame_rate", 60],
];
var hit_test_prefs = [
...prefs,
["test.events.async.enabled", true],
["apz.test.logging_enabled", true],
];
var subtests = [
{ "file": "helper_fission_setResolution.html", "prefs": prefs },
{
"file": "helper_fission_tap_on_zoomed.html",
"prefs": [["apz.max_tap_time", 10000]],
},
{ "file": "helper_fission_touch.html", "prefs": prefs },
{ "file": "helper_fission_transforms.html", "prefs": prefs },
{
"file": "helper_fission_animation_styling_in_oopif.html",
"prefs": animation_prefs
},
{
"file": "helper_fission_animation_styling_in_transformed_oopif.html",
"prefs": animation_prefs
},
{
file: "helper_fission_irregular_areas.html",
"prefs": hit_test_prefs
},
{
file: "helper_fission_empty_clip.html",
"prefs": hit_test_prefs
},
{
file: "helper_fission_unresolved_clip.html",
"prefs": hit_test_prefs
}
];
if (getPlatform() != "android") {
subtests.push(
{ // Skip on Android because of missing native wheel event support
"file": "helper_fission_scroll_handoff.html",
"prefs": prefs
},
{ // Fails on try runs for Android
"file": "helper_fission_tap.html",
"prefs": [["apz.max_tap_time", 10000]],
}
);
if (getPlatform() != "linux") {
subtests.push(
{ // Fails on try runs for Android and Linux
"file": "helper_fission_inactivescroller_under_oopif.html",
"prefs": hit_test_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>