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-interruption-test.js"></script> |
| 14 <script type="text/javascript"> |
| 15 function doTest() |
| 16 { |
| 17 const testCase = {y1: 40, y2: 4000, y3: 15}; |
| 18 const innerPoint = {x: 100, y: 100}; |
| 19 runScrollInterruptionTests(document.documentElement, testCase, 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 the main frame works with both sc
roll behaviors and with input</p> |
| 28 <div id="content"></div> |
| 29 </body> |
| 30 </html> |
OLD | NEW |