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

Side by Side Diff: LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 var expectedScrollTop = 5; 5 var expectedScrollTop = 5;
6 var expectedScrollLeft = 3; 6 var expectedScrollLeft = 3;
7 var pixelsPerWheelTick = 40; 7 var pixelsPerWheelTick = 40;
8 var event; 8 var event;
9 var div; 9 var div;
10 10
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.waitUntilDone(); 12 testRunner.waitUntilDone();
13 13
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 <body style="margin:0" onload="setTimeout('dispatchWheelEvent();', 100)"> 52 <body style="margin:0" onload="setTimeout('dispatchWheelEvent();', 100)">
53 <div id="overflow" style="border:2px solid black;overflow:auto;height:20 0px;width:200px;"> 53 <div id="overflow" style="border:2px solid black;overflow:auto;height:20 0px;width:200px;">
54 <div style="background-color:red;height:200px;width:400px;"></div> 54 <div style="background-color:red;height:200px;width:400px;"></div>
55 <div style="background-color:green;height:200px;width:400px;"></div> 55 <div style="background-color:green;height:200px;width:400px;"></div>
56 <div style="background-color:red;height:200px;width:400px;"></div> 56 <div style="background-color:red;height:200px;width:400px;"></div>
57 </div> 57 </div>
58 <div id="console"></div> 58 <div id="console"></div>
59 </body> 59 </body>
60 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698