Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: LayoutTests/fast/events/touch/gesture/gesture-tap-active-state.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698