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

Side by Side Diff: LayoutTests/fast/scroll-behavior/subframe-element-scrollBy.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 #subframe {
6 width: 200px;
7 height: 200px;
8 }
9 </style>
10 <script src="../../resources/testharness.js"></script>
11 <script src="../../resources/testharnessreport.js"></script>
12 <script src="resources/scroll-behavior-test.js"></script>
13 <script type="text/javascript">
14 function getEndPosition(testCase, startPosition) {
15 var endPosition = {};
16 if (testCase.x)
17 endPosition.x = startPosition.x + testCase.x;
18 else
19 endPosition.x = startPosition.x;
20
21 if (testCase.y)
22 endPosition.y = startPosition.y + testCase.y;
23 else
24 endPosition.y = startPosition.y;
25 return endPosition;
26 }
27
28 function jsScroll(testCase) {
29 var subframe = document.getElementById("subframe");
30 if (testCase.js) {
31 var scrollToOptions = {behavior: testCase.js};
32 if (testCase.x)
33 scrollToOptions.left = testCase.x;
34 if (testCase.y)
35 scrollToOptions.top = testCase.y;
36 subframe.contentDocument.documentElement.scrollBy(scrollToOptions);
37 } else {
38 subframe.contentDocument.documentElement.scrollBy(testCase.x, testCase.y );
39 }
40 }
41
42 const testScrolls = [
43 {js: "instant", css: "auto", x: 1, y: 2},
44 {js: "instant", css: "smooth", x: 2, y: 3},
45 {js: "auto", css: "auto", x: 3, y: 4},
46 {js: "", css: "auto", x: 4, y: 5},
47 {js: "auto", css: "auto", x: 3},
48 {js: "auto", css: "auto", y: 4},
49 {js: "auto", css: "auto"},
50 {js: "smooth", css: "auto", waitForEnd: true, x: 10, y: 15},
51 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25},
52 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35},
53 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 45},
54 {js: "auto", css: "smooth", waitForEnd: true, x: -30},
55 {js: "auto", css: "smooth", waitForEnd: true, y: -35},
56 {js: "smooth", css: "auto", waitForEnd: false, x: 4000, y: 4100},
57 {js: "smooth", css: "smooth", waitForEnd: false, x: -3900, y: -3850},
58 {js: "auto", css: "smooth", waitForEnd: false, x: 4050, y: 4000},
59 {js: "", css: "smooth", waitForEnd: false, x: -4000, y: -4100},
60 ];
61
62 function doTest()
63 {
64 var testCases = [];
65 for (var i = 0; i < testScrolls.length; i++) {
66 testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
67 }
68
69 var subframe = document.getElementById("subframe");
70 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.d ocumentElement,
71 subframe.contentDocument,
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 scrollBy on a subframe's document element works with both scroll behaviors</p>
84 <iframe id="subframe" src="resources/large-subframe.html"></iframe>
85 </body>
86 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698