Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: LayoutTests/fast/scroll-behavior/main-frame-element-scroll.html

Issue 782793002: Update Element API for CSSOM smooth scrolling to match the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address review comments Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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-behavior-test.js"></script>
14 <script type="text/javascript">
15 function getEndPosition(testCase, startPosition) {
16 var endPosition = {};
17 if (testCase.x)
18 endPosition.x = testCase.x;
19 else
20 endPosition.x = startPosition.x;
21
22 if (testCase.y)
23 endPosition.y = testCase.y;
24 else
25 endPosition.y = startPosition.y;
26
27 return endPosition;
28 }
29
30 function jsScroll(testCase) {
31 if (testCase.js) {
32 var scrollToOptions = {behavior: testCase.js};
33 if (testCase.x)
34 scrollToOptions.left = testCase.x;
35 if (testCase.y)
36 scrollToOptions.top = testCase.y;
37 document.documentElement.scroll(scrollToOptions);
38 } else {
39 document.documentElement.scroll(testCase.x, testCase.y);
40 }
41 }
42
43 const testScrolls = [
44 {js: "instant", css: "auto", x: 1, y: 2},
45 {js: "instant", css: "smooth", x: 2, y: 3},
46 {js: "auto", css: "auto", x: 3, y: 4},
47 {js: "", css: "auto", x: 4, y: 5},
48 {js: "auto", css: "auto", x: 3},
49 {js: "auto", css: "auto", y: 4},
50 {js: "auto", css: "auto"},
51 {js: "smooth", css: "auto", waitForEnd: true, x: 10, y: 15},
52 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25},
53 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35},
54 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 45},
55 {js: "auto", css: "smooth", waitForEnd: true, x: 45},
56 {js: "auto", css: "smooth", waitForEnd: true, y: 40},
57 {js: "smooth", css: "auto", waitForEnd: false, x: 4000, y: 4100},
58 {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 20},
59 {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 4000},
60 {js: "", css: "smooth", waitForEnd: false, x: 10, y: 5},
61 ];
62
63 function doTest()
64 {
65 var testCases = [];
66 for (var i = 0; i < testScrolls.length; i++) {
67 testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
68 }
69
70 var scrollBehaviorTest = new ScrollBehaviorTest(document.documentElement,
71 document,
72 testCases,
73 getEndPosition,
74 jsScroll);
75 scrollBehaviorTest.run();
76 }
77
78 window.addEventListener('load', doTest, false);
79 </script>
80 </head>
81
82 <body>
83 <p>Test that calling scroll on the main frame's document element works with bo th scroll behaviors</p>
84 <div id="content"></div>
85 </body>
86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698