test_coalesce_touchmove.html (753B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>touchmove coalescing</title> 6 <script src="/tests/SimpleTest/SimpleTest.js"></script> 7 <link rel="stylesheet" href="/tests/SimpleTest/test.css"/> 8 <script> 9 SimpleTest.waitForExplicitFinish(); 10 11 let tests = [ 12 "file_coalesce_touchmove_ipc.html", 13 "file_coalesce_touchmove_browserchild.html", 14 "file_coalesce_touchmove_browserchild2.html", 15 ]; 16 17 function finish() { 18 info("finish"); 19 if (tests.length) { 20 SimpleTest.executeSoon(run); 21 return; 22 } 23 SimpleTest.finish(); 24 } 25 26 function run() { 27 info(`run ${tests[0]}`); 28 window.open(tests.shift()); 29 } 30 </script> 31 </head> 32 <body onload="run();"> 33 </body> 34 </html>