| <!DOCTYPE html> |
| |
| <html> |
| <head> |
| <script src="../../../../resources/js-test-pre.js"></script> |
| <style> |
| body { |
| margin: none; |
| } |
| </style> |
| <meta name="viewport" content="initial-scale=1"> |
| </head> |
| <body> |
| <p id="description"></p> |
| <div id="console"> |
| </div> |
| <script> |
| description("Test that an Apple Pencil is registered as a touchstart."); |
| window.jsTestIsAsync = true; |
| |
| function getUIScript(x, y) |
| { |
| return ` |
| (function() { |
| uiController.stylusDownAtPoint(${x}, ${y}, 0, 0, 0, function () {}); |
| uiController.stylusUpAtPoint(${x}, ${y}, function () {}); |
| })();` |
| } |
| |
| function runTest() |
| { |
| window.addEventListener("touchstart", (event) => { |
| debug("touchstart fired."); |
| finishJSTest(); |
| }); |
| |
| if (window.testRunner) |
| testRunner.runUIScript(getUIScript(50, 200), function(result) { }); |
| } |
| |
| window.addEventListener("load", runTest, false); |
| </script> |
| <script src="../../../../resources/js-test-post.js"></script> |
| </body> |
| </html> |