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

Side by Side Diff: LayoutTests/fast/events/touch/gesture/gesture-tap-on-hover-element.html

Issue 58533003: Move fast/js/resources files to resources. (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="../../../../resources/js-test.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
11 div { 11 div {
12 line-height: 100px; 12 line-height: 100px;
13 } 13 }
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 eventSender.gestureTap(150, 150); 78 eventSender.gestureTap(150, 150);
79 shouldBe("clickMeCount", "1"); 79 shouldBe("clickMeCount", "1");
80 shouldBe("dontClickMeCount", "0"); 80 shouldBe("dontClickMeCount", "0");
81 shouldBe("clickMe.offsetTop", "100"); 81 shouldBe("clickMe.offsetTop", "100");
82 } 82 }
83 83
84 runTests(); 84 runTests();
85 </script> 85 </script>
86 </body> 86 </body>
87 </html> 87 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698