| <!DOCTYPE html><!-- webkit-test-runner [ useFlexibleViewport=true ] --> |
| <html> |
| <head> |
| <title>This tests the case when mousemove triggers a 10ms transition with delay and the new content is not "clickable"</title> |
| <script src="../../../../../resources/basic-gestures.js"></script> |
| <style> |
| #tapthis { |
| width: 400px; |
| height: 400px; |
| border: 1px solid green; |
| } |
| |
| #becomesVisible { |
| position: absolute; |
| top: 100px; |
| left: -1000px; |
| width: 100px; |
| height: 100px; |
| background-color: green; |
| transition: left 10ms ease-in-out 100ms; |
| } |
| </style> |
| <script> |
| async function test() { |
| if (!window.testRunner || !testRunner.runUIScript) |
| return; |
| if (window.internals) |
| internals.settings.setContentChangeObserverEnabled(true); |
| |
| testRunner.waitUntilDone(); |
| testRunner.dumpAsText(); |
| |
| let rect = tapthis.getBoundingClientRect(); |
| let x = rect.left + rect.width / 2; |
| let y = rect.top + rect.height / 2; |
| |
| await tapAtPoint(x, y); |
| } |
| </script> |
| </head> |
| <body onload="test()"> |
| <div id=tapthis>PASS if 'clicked' text is shown below.</div> |
| <div id=becomesVisible></div> |
| <pre id=result></pre> |
| <script> |
| tapthis.addEventListener("mousemove", function( event ) { |
| becomesVisible.style.left = "10px"; |
| }, false); |
| |
| tapthis.addEventListener("click", function( event ) { |
| result.innerHTML = "clicked"; |
| if (window.testRunner) |
| testRunner.notifyDone(); |
| }, false); |
| </script> |
| </body> |
| </html> |