OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 #content { |
| 6 width: 7500px; |
| 7 height: 7500px; |
| 8 background-color: blue; |
| 9 } |
| 10 </style> |
| 11 <script src="../../resources/testharness.js"></script> |
| 12 <script src="../../resources/testharnessreport.js"></script> |
| 13 <script src="resources/scroll-behavior-test.js"></script> |
| 14 <script type="text/javascript"> |
| 15 const instantScrolls = [ |
| 16 {js: "instant", css: "instant", x: 1, y: 2}, |
| 17 {js: "instant", css: "smooth", x: 2, y: 3}, |
| 18 {js: "auto", css: "instant", x: 3, y: 4}, |
| 19 {js: "", css: "instant", x: 4, y: 5} |
| 20 ]; |
| 21 |
| 22 const smoothScrolls = [ |
| 23 {js: "smooth", css: "instant", waitForEnd: true, x: 10, y: 15}, |
| 24 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25}, |
| 25 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35}, |
| 26 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 45}, |
| 27 {js: "smooth", css: "instant", waitForEnd: false, x: 4000, y: 4100}, |
| 28 {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 20}, |
| 29 {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 4000}, |
| 30 {js: "", css: "smooth", waitForEnd: false, x: 10, y: 5}, |
| 31 ]; |
| 32 |
| 33 function runTestCase(testCase) |
| 34 { |
| 35 if (testCase.js) |
| 36 window.scroll(testCase.x, testCase.y, {behavior:testCase.js}); |
| 37 else |
| 38 window.scroll(testCase.x, testCase.y); |
| 39 } |
| 40 |
| 41 function endX(testCase) |
| 42 { |
| 43 return testCase.x; |
| 44 } |
| 45 |
| 46 function endY(testCase) |
| 47 { |
| 48 return testCase.y; |
| 49 } |
| 50 |
| 51 function doTest() |
| 52 { |
| 53 runScrollBehaviorTests(document.documentElement, |
| 54 document, |
| 55 instantScrolls, |
| 56 smoothScrolls, |
| 57 runTestCase, |
| 58 endX, |
| 59 endY); |
| 60 } |
| 61 |
| 62 window.addEventListener('load', doTest, false); |
| 63 </script> |
| 64 </head> |
| 65 |
| 66 <body> |
| 67 <p>Test that calling scroll on the main frame works with both scroll behaviors
</p> |
| 68 <div id="content"></div> |
| 69 </body> |
| 70 </html> |
OLD | NEW |