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

Side by Side Diff: LayoutTests/fast/events/platform-wheelevent-paging-y-in-scrolling-div.html

Issue 49063011: Delete js-test-style.css. js-test-pre.js injects the CSS it needs now. (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 <link rel="stylesheet" href="../js/resources/js-test-style.css">
4 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
5 <script> 4 <script>
6 var givenScrollTop = 2; 5 var givenScrollTop = 2;
7 var givenScrollLeft = 0; 6 var givenScrollLeft = 0;
8 var expectedScrollTop = 322; // 2 pages, 161 * 2, see comment in HTM L below. 7 var expectedScrollTop = 322; // 2 pages, 161 * 2, see comment in HTM L below.
9 var expectedScrollLeft = 0; 8 var expectedScrollLeft = 0;
10 var event; 9 var event;
11 var div; 10 var div;
12 11
13 if (window.testRunner) 12 if (window.testRunner)
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <div style="background-color:green;height:300px;width:300px;positi on:relative;left:300px;top:-300px"></div> 61 <div style="background-color:green;height:300px;width:300px;positi on:relative;left:300px;top:-300px"></div>
63 </div> 62 </div>
64 <div style="height:300px;width:600px"> 63 <div style="height:300px;width:600px">
65 <div style="background-color:blue;height:300px;width:300px;positio n:relative;left:0px;top:0px"></div> 64 <div style="background-color:blue;height:300px;width:300px;positio n:relative;left:0px;top:0px"></div>
66 <div style="background-color:yellow;height:300px;width:300px;posit ion:relative;left:300px;top:-300px"></div> 65 <div style="background-color:yellow;height:300px;width:300px;posit ion:relative;left:300px;top:-300px"></div>
67 </div> 66 </div>
68 </div> 67 </div>
69 <div id="console"></div> 68 <div id="console"></div>
70 </body> 69 </body>
71 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698