| 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 = testCase.x; | 17 endPosition.x = testCase.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 if (testCase.js) { |
| 24 window.scroll(testCase.x, testCase.y, {behavior: testCase.js}); | 24 window.scroll({left: testCase.x, top: testCase.y, behavior: testCase.js}
); |
| 25 } else { | 25 } else { |
| 26 window.scroll(testCase.x, testCase.y); | 26 window.scroll(testCase.x, testCase.y); |
| 27 } | 27 } |
| 28 } | 28 } |
| 29 | 29 |
| 30 const testScrolls = [ | 30 const testScrolls = [ |
| 31 {js: "instant", css: "auto", x: 1, y: 2}, | 31 {js: "instant", css: "auto", x: 1, y: 2}, |
| 32 {js: "instant", css: "smooth", x: 2, y: 3}, | 32 {js: "instant", css: "smooth", x: 2, y: 3}, |
| 33 {js: "auto", css: "auto", x: 3, y: 4}, | 33 {js: "auto", css: "auto", x: 3, y: 4}, |
| 34 {js: "", css: "auto", x: 4, y: 5}, | 34 {js: "", css: "auto", x: 4, y: 5}, |
| (...skipping 24 matching lines...) Expand all Loading... |
| 59 | 59 |
| 60 window.addEventListener('load', doTest, false); | 60 window.addEventListener('load', doTest, false); |
| 61 </script> | 61 </script> |
| 62 </head> | 62 </head> |
| 63 | 63 |
| 64 <body> | 64 <body> |
| 65 <p>Test that calling scroll on the main frame works with both scroll behaviors
</p> | 65 <p>Test that calling scroll on the main frame works with both scroll behaviors
</p> |
| 66 <div id="content"></div> | 66 <div id="content"></div> |
| 67 </body> | 67 </body> |
| 68 </html> | 68 </html> |
| OLD | NEW |