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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/events/wheel/wheel-in-scrollbar.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, 4 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script> 2 <script src="../../../resources/js-test.js"></script>
3 <script> 3 <script>
4 window.jsTestIsAsync = true; 4 window.jsTestIsAsync = true;
5 5
6 description("Test that wheel scrolling over the page scrollbar scrolls " + 6 description("Test that wheel scrolling over the page scrollbar scrolls " +
7 "the page. We also placed an overflow div below the " + 7 "the page. We also placed an overflow div below the " +
8 "scrollbar to make sure we target the page and not the div " + 8 "scrollbar to make sure we target the page and not the div " +
9 "in that case."); 9 "in that case.");
10 10
11 var overflowDiv; 11 var overflowDiv;
12 12
(...skipping 16 matching lines...) Expand all
29 finishJSTest(); 29 finishJSTest();
30 } 30 }
31 </script> 31 </script>
32 32
33 <body style="margin:0"> 33 <body style="margin:0">
34 <div id="overflowDiv" style="width:1000px; height:500px; overflow:scroll"> 34 <div id="overflowDiv" style="width:1000px; height:500px; overflow:scroll">
35 <div style="height: 1000px"></div> 35 <div style="height: 1000px"></div>
36 </div> 36 </div>
37 <div style="height: 1000px"></div> 37 <div style="height: 1000px"></div>
38 </body> 38 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698