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

Side by Side Diff: LayoutTests/fast/scroll-behavior/main-frame-scrollLeft.html

Issue 1133693002: Update most LayoutTests to be agnostic to scrollTopLeftInterop mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: tdresser cr feedback Created 5 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #content { 5 #content {
6 width: 7500px; 6 width: 7500px;
7 height: 7500px; 7 height: 7500px;
8 background-color: blue; 8 background-color: blue;
9 } 9 }
10 </style> 10 </style>
11 <script src="../../resources/testharness.js"></script> 11 <script src="../../resources/testharness.js"></script>
12 <script src="../../resources/testharnessreport.js"></script> 12 <script src="../../resources/testharnessreport.js"></script>
13 <script src="resources/scroll-behavior-test.js"></script> 13 <script src="resources/scroll-behavior-test.js"></script>
14 <script type="text/javascript"> 14 <script type="text/javascript">
15 function getEndPosition(testCase, startPosition) { 15 function getEndPosition(testCase, startPosition) {
16 var endPosition = {}; 16 var endPosition = {};
17 endPosition.x = testCase.x; 17 endPosition.x = testCase.x;
18 endPosition.y = startPosition.y; 18 endPosition.y = startPosition.y;
19 return endPosition; 19 return endPosition;
20 } 20 }
21 21
22 function jsScroll(testCase) { 22 function jsScroll(testCase) {
23 document.body.scrollLeft = testCase.x; 23 document.scrollingElement.scrollLeft = testCase.x;
24 } 24 }
25 25
26 const testScrolls = [ 26 const testScrolls = [
27 {css: "auto", x: 1, y: 0}, 27 {css: "auto", x: 1, y: 0},
28 {css: "auto", x: 4, y: 0}, 28 {css: "auto", x: 4, y: 0},
29 {css: "smooth", waitForEnd: true, x: 20, y: 0}, 29 {css: "smooth", waitForEnd: true, x: 20, y: 0},
30 {css: "smooth", waitForEnd: true, x: 40, y: 0}, 30 {css: "smooth", waitForEnd: true, x: 40, y: 0},
31 {css: "smooth", waitForEnd: false, x: 4000, y: 0}, 31 {css: "smooth", waitForEnd: false, x: 4000, y: 0},
32 {css: "smooth", waitForEnd: false, x: 10, y: 0}, 32 {css: "smooth", waitForEnd: false, x: 10, y: 0},
33 ]; 33 ];
34 34
35 function doTest() 35 function doTest()
36 { 36 {
37 var testCases = []; 37 var testCases = [];
38 for (var i = 0; i < testScrolls.length; i++) { 38 for (var i = 0; i < testScrolls.length; i++) {
39 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); 39 testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
40 } 40 }
41 41
42 var scrollBehaviorTest = new ScrollBehaviorTest(document.body, 42 var scrollBehaviorTest = new ScrollBehaviorTest(document.scrollingElement,
43 document, 43 document,
44 testCases, 44 testCases,
45 getEndPosition, 45 getEndPosition,
46 jsScroll); 46 jsScroll);
47 scrollBehaviorTest.run(); 47 scrollBehaviorTest.run();
48 } 48 }
49 49
50 window.addEventListener('load', doTest, false); 50 window.addEventListener('load', doTest, false);
51 </script> 51 </script>
52 </head> 52 </head>
53 53
54 <body> 54 <body>
55 <p>Test that setting scrollLeft on the main frame works with both scroll behav iors</p> 55 <p>Test that setting scrollLeft on the main frame works with both scroll behav iors</p>
56 <div id="content"></div> 56 <div id="content"></div>
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/scroll-behavior/main-frame-scrollBy.html ('k') | LayoutTests/fast/scroll-behavior/main-frame-scrollTo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698