| OLD | NEW |
| 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 = startPosition.x; | 17 endPosition.x = startPosition.x; |
| 18 endPosition.y = testCase.y; | 18 endPosition.y = testCase.y; |
| 19 return endPosition; | 19 return endPosition; |
| 20 } | 20 } |
| 21 | 21 |
| 22 function jsScroll(testCase) { | 22 function jsScroll(testCase) { |
| 23 if (testCase.js) { | 23 document.documentElement.scrollTop = testCase.y; |
| 24 document.documentElement.scrollTop = {y: testCase.y, behavior: testCase.
js}; | |
| 25 } else { | |
| 26 document.documentElement.scrollTop = testCase.y; | |
| 27 } | |
| 28 } | 24 } |
| 29 | 25 |
| 30 const testScrolls = [ | 26 const testScrolls = [ |
| 31 {js: "instant", css: "auto", x: 0, y: 2}, | 27 {css: "auto", x: 0, y: 2}, |
| 32 {js: "instant", css: "smooth", x: 0, y: 3}, | 28 {css: "auto", x: 0, y: 4}, |
| 33 {js: "auto", css: "auto", x: 0, y: 4}, | 29 {css: "smooth", waitForEnd: true, x: 0, y: 25}, |
| 34 {js: "", css: "auto", x: 0, y: 5}, | 30 {css: "smooth", waitForEnd: true, x: 0, y: 45}, |
| 35 {js: "smooth", css: "auto", waitForEnd: true, x: 0, y: 15}, | 31 {css: "smooth", waitForEnd: false, x: 0, y: 4100}, |
| 36 {js: "smooth", css: "smooth", waitForEnd: true, x: 0, y: 25}, | 32 {css: "smooth", waitForEnd: false, x: 0, y: 20}, |
| 37 {js: "auto", css: "smooth", waitForEnd: true, x: 0, y: 35}, | |
| 38 {js: "", css: "smooth", waitForEnd: true, x: 0, y: 45}, | |
| 39 {js: "smooth", css: "auto", waitForEnd: false, x: 0, y: 4100}, | |
| 40 {js: "smooth", css: "smooth", waitForEnd: false, x: 0, y: 20}, | |
| 41 {js: "auto", css: "smooth", waitForEnd: false, x: 0, y: 4000}, | |
| 42 {js: "", css: "smooth", waitForEnd: false, x: 0, y: 5}, | |
| 43 ]; | 33 ]; |
| 44 | 34 |
| 45 function doTest() | 35 function doTest() |
| 46 { | 36 { |
| 47 var testCases = []; | 37 var testCases = []; |
| 48 for (var i = 0; i < testScrolls.length; i++) { | 38 for (var i = 0; i < testScrolls.length; i++) { |
| 49 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); | 39 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); |
| 50 } | 40 } |
| 51 | 41 |
| 52 var scrollBehaviorTest = new ScrollBehaviorTest(document.documentElement, | 42 var scrollBehaviorTest = new ScrollBehaviorTest(document.documentElement, |
| 53 document, | 43 document, |
| 54 testCases, | 44 testCases, |
| 55 getEndPosition, | 45 getEndPosition, |
| 56 jsScroll); | 46 jsScroll); |
| 57 scrollBehaviorTest.run(); | 47 scrollBehaviorTest.run(); |
| 58 } | 48 } |
| 59 | 49 |
| 60 window.addEventListener('load', doTest, false); | 50 window.addEventListener('load', doTest, false); |
| 61 </script> | 51 </script> |
| 62 </head> | 52 </head> |
| 63 | 53 |
| 64 <body> | 54 <body> |
| 65 <p>Test that setting scrollTop on the main frame works with both scroll behavi
ors</p> | 55 <p>Test that setting scrollTop on the main frame works with both scroll behavi
ors</p> |
| 66 <div id="content"></div> | 56 <div id="content"></div> |
| 67 </body> | 57 </body> |
| 68 </html> | 58 </html> |
| OLD | NEW |