OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 #subframe { |
| 6 width: 200px; |
| 7 height: 200px; |
| 8 } |
| 9 </style> |
| 10 <script src="../../resources/testharness.js"></script> |
| 11 <script src="../../resources/testharnessreport.js"></script> |
| 12 <script src="resources/scroll-behavior-test.js"></script> |
| 13 <script type="text/javascript"> |
| 14 const instantScrolls = [ |
| 15 {js: "instant", css: "instant", x: 1, y: 2}, |
| 16 {js: "instant", css: "smooth", x: 2, y: 3}, |
| 17 {js: "auto", css: "instant", x: 3, y: 4}, |
| 18 {js: "", css: "instant", x: 4, y: 5} |
| 19 ]; |
| 20 |
| 21 const smoothScrolls = [ |
| 22 {js: "smooth", css: "instant", waitForEnd: true, x: 10, y: 15}, |
| 23 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25}, |
| 24 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35}, |
| 25 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 45}, |
| 26 {js: "smooth", css: "instant", waitForEnd: false, x: 4000, y: 4100}, |
| 27 {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 20}, |
| 28 {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 4000}, |
| 29 {js: "", css: "smooth", waitForEnd: false, x: 10, y: 5}, |
| 30 ]; |
| 31 |
| 32 function runTestCase(testCase) |
| 33 { |
| 34 var subframe = document.getElementById("subframe"); |
| 35 if (testCase.js) |
| 36 subframe.contentWindow.scroll(testCase.x, testCase.y, {behavior: testCas
e.js}); |
| 37 else |
| 38 subframe.contentWindow.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 var subframe = document.getElementById("subframe"); |
| 54 runScrollBehaviorTests(subframe.contentDocument.documentElement, |
| 55 subframe.contentDocument, |
| 56 instantScrolls, |
| 57 smoothScrolls, |
| 58 runTestCase, |
| 59 endX, |
| 60 endY); |
| 61 } |
| 62 |
| 63 window.addEventListener('load', doTest, false); |
| 64 </script> |
| 65 </head> |
| 66 |
| 67 <body> |
| 68 <p>Test that calling scroll on a subframe works with both scroll behaviors</p> |
| 69 <iframe id="subframe" src="resources/large-subframe.html"></iframe> |
| 70 </body> |
| 71 </html> |
OLD | NEW |