Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scroll-behavior / main-frame-scrollTop.html
blob98bd121e6dde13e10d0d4c1b275b9b68d0427fc4
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #content {
6 width: 7500px;
7 height: 7500px;
8 background-color: blue;
10 </style>
11 <script src="../../resources/testharness.js"></script>
12 <script src="../../resources/testharnessreport.js"></script>
13 <script src="resources/scroll-behavior-test.js"></script>
14 <script type="text/javascript">
15 function getEndPosition(testCase, startPosition) {
16 var endPosition = {};
17 endPosition.x = startPosition.x;
18 endPosition.y = testCase.y;
19 return endPosition;
22 function jsScroll(testCase) {
23 document.scrollingElement.scrollTop = testCase.y;
26 const testScrolls = [
27 {css: "auto", x: 0, y: 2},
28 {css: "auto", x: 0, y: 4},
29 {css: "smooth", waitForEnd: true, x: 0, y: 25},
30 {css: "smooth", waitForEnd: true, x: 0, y: 45},
31 {css: "smooth", waitForEnd: false, x: 0, y: 4100},
32 {css: "smooth", waitForEnd: false, x: 0, y: 20},
35 function doTest()
37 var testCases = [];
38 for (var i = 0; i < testScrolls.length; i++) {
39 testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
42 var scrollBehaviorTest = new ScrollBehaviorTest(document.scrollingElement,
43 document,
44 testCases,
45 getEndPosition,
46 jsScroll);
47 scrollBehaviorTest.run();
50 window.addEventListener('load', doTest, false);
51 </script>
52 </head>
54 <body>
55 <p>Test that setting scrollTop on the main frame works with both scroll behaviors</p>
56 <div id="content"></div>
57 </body>
58 </html>