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

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

Issue 882153004: Re-enable main-frame and subframe CSSOM smooth scroll layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use nullptr instead of 0 Created 5 years, 10 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 #subframe { 5 #subframe {
6 width: 200px; 6 width: 200px;
7 height: 200px; 7 height: 200px;
8 } 8 }
9 </style> 9 </style>
10 <script src="../../resources/testharness.js"></script> 10 <script src="../../resources/testharness.js"></script>
11 <script src="../../resources/testharnessreport.js"></script> 11 <script src="../../resources/testharnessreport.js"></script>
12 <script src="resources/scroll-behavior-test.js"></script> 12 <script src="resources/scroll-behavior-test.js"></script>
13 <script type="text/javascript"> 13 <script type="text/javascript">
14 function getEndPosition(testCase, startPosition) { 14 function getEndPosition(testCase, startPosition) {
15 var endPosition = {}; 15 var endPosition = {};
16 endPosition.x = testCase.x; 16 endPosition.x = testCase.x;
17 endPosition.y = startPosition.y; 17 endPosition.y = startPosition.y;
18 return endPosition; 18 return endPosition;
19 } 19 }
20 20
21 function jsScroll(testCase) { 21 function jsScroll(testCase) {
22 var subframe = document.getElementById("subframe"); 22 var subframe = document.getElementById("subframe");
23 subframe.contentDocument.documentElement.scrollLeft = testCase.x; 23 subframe.contentDocument.body.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 subframe = document.getElementById("subframe"); 42 var subframe = document.getElementById("subframe");
43 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.d ocumentElement, 43 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.b ody,
44 subframe.contentDocument, 44 subframe.contentDocument,
45 testCases, 45 testCases,
46 getEndPosition, 46 getEndPosition,
47 jsScroll); 47 jsScroll);
48 scrollBehaviorTest.run(); 48 scrollBehaviorTest.run();
49 } 49 }
50 50
51 window.addEventListener('load', doTest, false); 51 window.addEventListener('load', doTest, false);
52 </script> 52 </script>
53 </head> 53 </head>
54 54
55 <body> 55 <body>
56 <p>Test that setting scrollLeft on a subframe works with both scroll behaviors </p> 56 <p>Test that setting scrollLeft on a subframe works with both scroll behaviors </p>
57 <iframe id="subframe" src="resources/large-subframe.html"></iframe> 57 <iframe id="subframe" src="resources/large-subframe.html"></iframe>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/scroll-behavior/subframe-scrollBy.html ('k') | LayoutTests/fast/scroll-behavior/subframe-scrollTo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698