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

Side by Side Diff: LayoutTests/fast/scrolling/overflow-scrollability.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 <head> 3 <head>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <script> 5 <script>
6 var div; 6 var div;
7 var pixelsPerWheelTick = 40; 7 var pixelsPerWheelTick = 40;
8 8
9 function tryScroll() { 9 function tryScroll() {
10 eventSender.mouseMoveTo(div.offsetLeft + 5, div.offsetTop + 5); 10 eventSender.mouseMoveTo(div.offsetLeft + 5, div.offsetTop + 5);
11 eventSender.mouseScrollBy(0,-1); 11 eventSender.mouseScrollBy(0,-1);
12 eventSender.mouseScrollBy(-1,0); 12 eventSender.mouseScrollBy(-1,0);
13 } 13 }
14 14
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 hidden without overflow 117 hidden without overflow
118 <div id="no-overflow-3" style="width: 100px; height: 100px; overflow-x: hidd en; overflow-y: hidden"> 118 <div id="no-overflow-3" style="width: 100px; height: 100px; overflow-x: hidd en; overflow-y: hidden">
119 <div style="width: 20px; height: 20px;">Content</div> 119 <div style="width: 20px; height: 20px;">Content</div>
120 </div> 120 </div>
121 overlay without overflow 121 overlay without overflow
122 <div id="no-overflow-4" style="width: 100px; height: 100px; overflow-x: over lay; overflow-y: overlay"> 122 <div id="no-overflow-4" style="width: 100px; height: 100px; overflow-x: over lay; overflow-y: overlay">
123 <div style="width: 20px; height: 20px;">Content</div> 123 <div style="width: 20px; height: 20px;">Content</div>
124 </div> 124 </div>
125 </body> 125 </body>
126 </html> 126 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/replaced/table-percent-width.html ('k') | LayoutTests/fast/scrolling/scroll-element-into-view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698