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

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

Issue 774203003: Update Window API for CSSOM smooth scrolling to match the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update expected results 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 #content { 5 #content {
6 width: 7500px; 6 width: 7500px;
7 height: 7500px; 7 height: 7500px;
8 background-color: blue; 8 background-color: blue;
9 } 9 }
10 </style> 10 </style>
11 <script src="../../resources/testharness.js"></script> 11 <script src="../../resources/testharness.js"></script>
12 <script src="../../resources/testharnessreport.js"></script> 12 <script src="../../resources/testharnessreport.js"></script>
13 <script src="resources/scroll-behavior-test.js"></script> 13 <script src="resources/scroll-behavior-test.js"></script>
14 <script type="text/javascript"> 14 <script type="text/javascript">
15 function getEndPosition(testCase, startPosition) { 15 function getEndPosition(testCase, startPosition) {
16 var endPosition = {}; 16 var endPosition = {};
17 endPosition.x = startPosition.x + testCase.x; 17 if (testCase.x)
18 endPosition.y = startPosition.y + testCase.y; 18 endPosition.x = startPosition.x + testCase.x;
19 else
20 endPosition.x = startPosition.x;
21
22 if (testCase.y)
23 endPosition.y = startPosition.y + testCase.y;
24 else
25 endPosition.y = startPosition.y;
19 return endPosition; 26 return endPosition;
20 } 27 }
21 28
22 function jsScroll(testCase) { 29 function jsScroll(testCase) {
23 if (testCase.js) { 30 if (testCase.js) {
24 window.scrollBy(testCase.x, testCase.y, {behavior: 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 window.scrollBy(scrollToOptions);
25 } else { 37 } else {
26 window.scrollBy(testCase.x, testCase.y); 38 window.scrollBy(testCase.x, testCase.y);
27 } 39 }
28 } 40 }
29 41
30 const testScrolls = [ 42 const testScrolls = [
31 {js: "instant", css: "auto", x: 1, y: 2}, 43 {js: "instant", css: "auto", x: 1, y: 2},
32 {js: "instant", css: "smooth", x: 2, y: 3}, 44 {js: "instant", css: "smooth", x: 2, y: 3},
33 {js: "auto", css: "auto", x: 3, y: 4}, 45 {js: "auto", css: "auto", x: 3, y: 4},
34 {js: "", css: "auto", x: 4, y: 5}, 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"},
35 {js: "smooth", css: "auto", waitForEnd: true, x: 10, y: 15}, 50 {js: "smooth", css: "auto", waitForEnd: true, x: 10, y: 15},
36 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25}, 51 {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 25},
37 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35}, 52 {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 35},
38 {js: "", css: "smooth", waitForEnd: true, x: 40, y: 45}, 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},
39 {js: "smooth", css: "auto", waitForEnd: false, x: 4000, y: 4100}, 56 {js: "smooth", css: "auto", waitForEnd: false, x: 4000, y: 4100},
40 {js: "smooth", css: "smooth", waitForEnd: false, x: -3900, y: -3850}, 57 {js: "smooth", css: "smooth", waitForEnd: false, x: -3900, y: -3850},
41 {js: "auto", css: "smooth", waitForEnd: false, x: 4050, y: 4000}, 58 {js: "auto", css: "smooth", waitForEnd: false, x: 4050, y: 4000},
42 {js: "", css: "smooth", waitForEnd: false, x: -4000, y: -4100}, 59 {js: "", css: "smooth", waitForEnd: false, x: -4000, y: -4100},
43 ]; 60 ];
44 61
45 function doTest() 62 function doTest()
46 { 63 {
47 var testCases = []; 64 var testCases = [];
48 for (var i = 0; i < testScrolls.length; i++) { 65 for (var i = 0; i < testScrolls.length; i++) {
(...skipping 10 matching lines...) Expand all
59 76
60 window.addEventListener('load', doTest, false); 77 window.addEventListener('load', doTest, false);
61 </script> 78 </script>
62 </head> 79 </head>
63 80
64 <body> 81 <body>
65 <p>Test that calling scrollBy on the main frame works with both scroll behavio rs</p> 82 <p>Test that calling scrollBy on the main frame works with both scroll behavio rs</p>
66 <div id="content"></div> 83 <div id="content"></div>
67 </body> 84 </body>
68 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698