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

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

Issue 134443003: Implement CSSOM Smooth Scroll API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 10 months 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 const instantScrolls = [
16 {js: "instant", css: "instant", x: 1},
17 {js: "instant", css: "smooth", x: 2},
18 {js: "auto", css: "instant", x: 3},
19 {js: "", css: "instant", x: 4}
20 ];
21
22 const smoothScrolls = [
23 {js: "smooth", css: "instant", waitForEnd: true, x: 10},
24 {js: "smooth", css: "smooth", waitForEnd: true, x: 20},
25 {js: "auto", css: "smooth", waitForEnd: true, x: 30},
26 {js: "", css: "smooth", waitForEnd: true, x: 40},
27 {js: "smooth", css: "instant", waitForEnd: false, x: 4000},
28 {js: "smooth", css: "smooth", waitForEnd: false, x: 15},
29 {js: "auto", css: "smooth", waitForEnd: false, x: 4100},
30 {js: "", css: "smooth", waitForEnd: false, x: 10},
31 ];
32
33 function runTestCase(testCase)
34 {
35 var root = document.documentElement;
36 if (testCase.js)
37 root.scrollLeft = {x: testCase.x, behavior: testCase.js};
38 else
39 root.scrollLeft = testCase.x;
40 }
41
42 function endX(testCase)
43 {
44 return testCase.x;
45 }
46
47 function endY(testCase, startY)
48 {
49 return startY;
50 }
51
52 function doTest()
53 {
54 runScrollBehaviorTests(document.documentElement,
55 document,
56 instantScrolls,
57 smoothScrolls,
58 runTestCase,
59 endX,
60 endY);
61 }
62
63 window.addEventListener('load', doTest, false);
64 </script>
65 </head>
66
67 <body>
68 <p>Test that setting scrollLeft on the main frame works with both scroll behav iors</p>
69 <div id="content"></div>
70 </body>
71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698