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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/wheel/wheelevent-in-scrolling-div.html

Issue 2261173005: wheel layout tests moved to fast/events/wheel folder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 months 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
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../../resources/js-test.js"></script>
4 <script> 4 <script>
5 window.jsTestIsAsync = true; 5 window.jsTestIsAsync = true;
6 var expectedScrollTop = 200; 6 var expectedScrollTop = 200;
7 var expectedScrollLeft = 100; 7 var expectedScrollLeft = 100;
8 var event; 8 var event;
9 var div; 9 var div;
10 10
11 function runTest() 11 function runTest()
12 { 12 {
13 var overflowElement = document.getElementById("overflow"); 13 var overflowElement = document.getElementById("overflow");
(...skipping 28 matching lines...) Expand all
42 42
43 <body style="margin:0" onload="runTest()"> 43 <body style="margin:0" onload="runTest()">
44 <div id="overflow" style="border:2px solid black;overflow:auto;height:20 0px;width:200px;"> 44 <div id="overflow" style="border:2px solid black;overflow:auto;height:20 0px;width:200px;">
45 <div style="background-color:red;height:200px;width:400px;"></div> 45 <div style="background-color:red;height:200px;width:400px;"></div>
46 <div style="background-color:green;height:200px;width:400px;"></div> 46 <div style="background-color:green;height:200px;width:400px;"></div>
47 <div style="background-color:red;height:200px;width:400px;"></div> 47 <div style="background-color:red;height:200px;width:400px;"></div>
48 </div> 48 </div>
49 <div id="console"></div> 49 <div id="console"></div>
50 </body> 50 </body>
51 </html> 51 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698