Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Errors

  • This test gets skipped with pattern: os == 'mac' && os_version == '15.30' && arch == 'aarch64' OR os == 'android' OR os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland' OR os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' OR os == 'mac' && os_version == '14.70' && arch == 'x86_64' OR os == 'mac' && os_version == '15.30' && arch == 'aarch64' OR os == 'win' && os_version == '11.26100' && arch == 'x86_64' OR os == 'win' && os_version == '11.26200' && arch == 'x86_64' OR os == 'win' && os_version == '10.2009' && arch == 'x86_64'
  • This test failed 577 times in the preceding 30 days. quicksearch this test
  • Manifest: dom/events/test/mochitest.toml
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>touchmove coalescing</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
<script>
SimpleTest.waitForExplicitFinish();
let tests = [
"file_coalesce_touchmove_ipc.html",
"file_coalesce_touchmove_browserchild.html",
"file_coalesce_touchmove_browserchild2.html",
];
function finish() {
info("finish");
if (tests.length) {
SimpleTest.executeSoon(run);
return;
}
SimpleTest.finish();
}
function run() {
info(`run ${tests[0]}`);
window.open(tests.shift());
}
</script>
</head>
<body onload="run();">
</body>
</html>