8 background-color: blue;
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 jsScroll(y
) {
16 window
.scrollTo({top
: y
, behavior
: 'smooth'});
20 const targets
= {y_min
: 40, y_mid
: 3500, y_max
: 7000};
21 const innerPoint
= {x
: 100, y
: 100};
22 var scrollInterruptionTest
= new SmoothScrollInterruptionTest(document
.scrollingElement
,
26 scrollInterruptionTest
.run();
29 window
.addEventListener('load', doTest
, false);
34 <p>Test that interrupting a smooth scroll on the main frame works with both scroll behaviors and with input
</p>
35 <div id=
"content"></div>