| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <script src="../../../js/resources/js-test-pre.js"></script> | 3 <script src="../../../js/resources/js-test-pre.js"></script> |
| 4 | 4 |
| 5 <style type="text/css"> | 5 <style type="text/css"> |
| 6 ::-webkit-scrollbar { | 6 ::-webkit-scrollbar { |
| 7 width: 0px; | 7 width: 0px; |
| 8 height: 0px; | 8 height: 0px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 eventSender.gestureShowPress(50, 50); | 78 eventSender.gestureShowPress(50, 50); |
| 79 shouldBe("dontClickMe.offsetTop", "100"); | 79 shouldBe("dontClickMe.offsetTop", "100"); |
| 80 | 80 |
| 81 debug("The Don't Click Me div should not be visible after a mouse move to be
low the Click Me div."); | 81 debug("The Don't Click Me div should not be visible after a mouse move to be
low the Click Me div."); |
| 82 eventSender.mouseMoveTo(350, 350); | 82 eventSender.mouseMoveTo(350, 350); |
| 83 shouldBe("dontClickMe.offsetTop", "0"); | 83 shouldBe("dontClickMe.offsetTop", "0"); |
| 84 } | 84 } |
| 85 | 85 |
| 86 runTests(); | 86 runTests(); |
| 87 </script> | 87 </script> |
| 88 <script src="../../../js/resources/js-test-post.js"></script> | |
| 89 </body> | 88 </body> |
| 90 </html> | 89 </html> |
| OLD | NEW |