OLD | NEW |
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-interruption-test.js"></script> | 12 <script src="resources/scroll-interruption-test.js"></script> |
13 <script type="text/javascript"> | 13 <script type="text/javascript"> |
14 function jsScroll(y) { | 14 function jsScroll(y) { |
15 var subframe = document.getElementById('subframe'); | 15 var subframe = document.getElementById('subframe'); |
16 var currentX = subframe.contentDocument.documentElement.scrollTop; | 16 subframe.contentWindow.scrollTo({top: y, behavior: 'smooth'}); |
17 subframe.contentWindow.scrollTo(currentX, y, {behavior: 'smooth'}); | |
18 } | 17 } |
19 | 18 |
20 function doTest() | 19 function doTest() |
21 { | 20 { |
22 const targets = {y_min: 40, y_mid: 3500, y_max: 7000}; | 21 const targets = {y_min: 40, y_mid: 3500, y_max: 7000}; |
23 const innerPoint = {x: 100, y: 100} | 22 const innerPoint = {x: 100, y: 100} |
24 var subframeDocumentElement = document.getElementById('subframe').contentD
ocument.documentElement; | 23 var subframeDocumentElement = document.getElementById('subframe').contentD
ocument.documentElement; |
25 var scrollInterruptionTest = new SmoothScrollInterruptionTest(subframeDocu
mentElement, | 24 var scrollInterruptionTest = new SmoothScrollInterruptionTest(subframeDocu
mentElement, |
26 innerPoint, | 25 innerPoint, |
27 targets, | 26 targets, |
28 jsScroll); | 27 jsScroll); |
29 scrollInterruptionTest.run(); | 28 scrollInterruptionTest.run(); |
30 } | 29 } |
31 | 30 |
32 window.addEventListener('load', doTest, false); | 31 window.addEventListener('load', doTest, false); |
33 </script> | 32 </script> |
34 </head> | 33 </head> |
35 | 34 |
36 <body> | 35 <body> |
37 <p>Test that interrupting a smooth scroll on a subframe works with both scroll
behaviors and with input</p> | 36 <p>Test that interrupting a smooth scroll on a subframe works with both scroll
behaviors and with input</p> |
38 <iframe id="subframe" src="resources/large-subframe.html"></iframe> | 37 <iframe id="subframe" src="resources/large-subframe.html"></iframe> |
39 </body> | 38 </body> |
40 </html> | 39 </html> |
OLD | NEW |