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-interruption-test.js"></script> |
| 13 <script type="text/javascript"> |
| 14 function doTest() |
| 15 { |
| 16 const testCase = {y1: 40, y2: 4000, y3: 15}; |
| 17 const innerPoint = {x: 100, y: 100} |
| 18 var subframe = document.getElementById("subframe"); |
| 19 runScrollInterruptionTests(subframe.contentDocument.documentElement, testC
ase, innerPoint); |
| 20 } |
| 21 |
| 22 window.addEventListener('load', doTest, false); |
| 23 </script> |
| 24 </head> |
| 25 |
| 26 <body> |
| 27 <p>Test that interrupting a smooth scroll on a subframe works with both scroll
behaviors and with input</p> |
| 28 <iframe id="subframe" src="resources/large-subframe.html"></iframe> |
| 29 </body> |
| 30 </html> |
OLD | NEW |