Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / scroll-behavior / main-frame-scrollTo.html
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-behavior-test.js"></script>
14   <script type="text/javascript">
15     function getEndPosition(testCase, startPosition) {
16       var endPosition = {};
17       endPosition.x = testCase.x;
18       endPosition.y = testCase.y;
19       return endPosition;
20     }
21
22     function jsScroll(testCase) {
23       if (testCase.js) {
24         window.scrollTo(testCase.x, testCase.y, {behavior: testCase.js});
25       } else {
26         window.scrollTo(testCase.x, testCase.y);
27       }
28     }
29
30     const testScrolls = [
31       {js: "instant", css: "instant", x: 1, y: 2},
32       {js: "instant", css: "smooth", x: 2, y: 3},
33       {js: "auto", css: "instant", x: 3, y: 4},
34       {js: "", css: "instant", x: 4, y: 5},
35       {js: "smooth", css: "instant", waitForEnd: true, x: 10, y: 15},
36       {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25},
37       {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35},
38       {js: "", css: "smooth", waitForEnd: true, x: 40, y: 45},
39       {js: "smooth", css: "instant", waitForEnd: false, x: 4000, y: 4100},
40       {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 20},
41       {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 4000},
42       {js: "", css: "smooth", waitForEnd: false, x: 10, y: 5},
43     ];
44
45     function doTest()
46     {
47       var testCases = [];
48       for (var i = 0; i < testScrolls.length; i++) {
49         testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
50       }
51
52       var scrollBehaviorTest = new ScrollBehaviorTest(document.documentElement,
53                                                       document,
54                                                       testCases,
55                                                       getEndPosition,
56                                                       jsScroll);
57       scrollBehaviorTest.run();
58     }
59
60     window.addEventListener('load', doTest, false);
61   </script>
62 </head>
63
64 <body>
65   <p>Test that calling scrollTo on the main frame works with both scroll behaviors</p>
66   <div id="content"></div>
67 </body>
68 </html>