| Index: LayoutTests/fast/scroll-behavior/main-frame-interrupted-scroll.html
|
| diff --git a/LayoutTests/fast/scroll-behavior/main-frame-interrupted-scroll.html b/LayoutTests/fast/scroll-behavior/main-frame-interrupted-scroll.html
|
| deleted file mode 100644
|
| index eacba09ec28246e95fa8e34e9fe962e503c1a6d3..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/scroll-behavior/main-frame-interrupted-scroll.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| - <style>
|
| - #content {
|
| - width: 1000px;
|
| - height: 10000px;
|
| - background-color: blue;
|
| - }
|
| - </style>
|
| - <script src="../../resources/testharness.js"></script>
|
| - <script src="../../resources/testharnessreport.js"></script>
|
| - <script src="resources/scroll-interruption-test.js"></script>
|
| - <script type="text/javascript">
|
| - function jsScroll(y) {
|
| - var currentX = document.documentElement.scrollTop;
|
| - window.scrollTo(currentX, y, {behavior: 'smooth'});
|
| - }
|
| -
|
| - function doTest() {
|
| - const targets = {y_min: 40, y_mid: 3500, y_max: 7000};
|
| - const innerPoint = {x: 100, y: 100};
|
| - var scrollInterruptionTest = new SmoothScrollInterruptionTest(document.documentElement,
|
| - innerPoint,
|
| - targets,
|
| - jsScroll);
|
| - scrollInterruptionTest.run();
|
| - }
|
| -
|
| - window.addEventListener('load', doTest, false);
|
| - </script>
|
| -</head>
|
| -
|
| -<body>
|
| - <p>Test that interrupting a smooth scroll on the main frame works with both scroll behaviors and with input</p>
|
| - <div id="content"></div>
|
| -</body>
|
| -</html>
|
|
|