| 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 <style type="text/css"> | 4 <style type="text/css"> |
| 5 #box { | 5 #box { |
| 6 background-color: blue; | 6 background-color: blue; |
| 7 width: 300px; | 7 width: 300px; |
| 8 height: 100px; | 8 height: 100px; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 shouldBeTrue("isBoxActive()"); | 94 shouldBeTrue("isBoxActive()"); |
| 95 eventSender.releaseTouchPoint(0); | 95 eventSender.releaseTouchPoint(0); |
| 96 eventSender.touchEnd(); | 96 eventSender.touchEnd(); |
| 97 shouldBeTrue("isBoxActive()"); | 97 shouldBeTrue("isBoxActive()"); |
| 98 eventSender.gestureTap(50, 50); | 98 eventSender.gestureTap(50, 50); |
| 99 shouldBeFalse("isBoxActive()"); | 99 shouldBeFalse("isBoxActive()"); |
| 100 } | 100 } |
| 101 | 101 |
| 102 runTests(); | 102 runTests(); |
| 103 </script> | 103 </script> |
| 104 <script src="../../../js/resources/js-test-post.js"></script> | |
| 105 </body> | 104 </body> |
| 106 </html> | 105 </html> |
| OLD | NEW |