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

Side by Side Diff: LayoutTests/fast/scroll-behavior/subframe-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: 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 #subframe { 5 #subframe {
6 width: 200px; 6 width: 200px;
7 height: 200px; 7 height: 200px;
8 } 8 }
9 </style> 9 </style>
10 <script src="../../resources/testharness.js"></script> 10 <script src="../../resources/testharness.js"></script>
11 <script src="../../resources/testharnessreport.js"></script> 11 <script src="../../resources/testharnessreport.js"></script>
12 <script src="resources/scroll-behavior-test.js"></script> 12 <script src="resources/scroll-behavior-test.js"></script>
13 <script type="text/javascript"> 13 <script type="text/javascript">
14 function getEndPosition(testCase, startPosition) { 14 function getEndPosition(testCase, startPosition) {
15 var endPosition = {}; 15 var endPosition = {};
16 endPosition.x = startPosition.x + testCase.x; 16 endPosition.x = startPosition.x + testCase.x;
17 endPosition.y = startPosition.y + testCase.y; 17 endPosition.y = startPosition.y + testCase.y;
18 return endPosition; 18 return endPosition;
19 } 19 }
20 20
21 function jsScroll(testCase) { 21 function jsScroll(testCase) {
22 var subframe = document.getElementById("subframe"); 22 var subframe = document.getElementById("subframe");
23 if (testCase.js) { 23 if (testCase.js) {
24 subframe.contentWindow.scrollBy(testCase.x, testCase.y, {behavior: testC ase.js}); 24 subframe.contentWindow.scrollBy({left: testCase.x, top: testCase.y, beha vior: testCase.js});
25 } else { 25 } else {
26 subframe.contentWindow.scrollBy(testCase.x, testCase.y); 26 subframe.contentWindow.scrollBy(testCase.x, testCase.y);
27 } 27 }
28 } 28 }
29 29
30 const testScrolls = [ 30 const testScrolls = [
31 {js: "instant", css: "auto", x: 1, y: 2}, 31 {js: "instant", css: "auto", x: 1, y: 2},
32 {js: "instant", css: "smooth", x: 2, y: 3}, 32 {js: "instant", css: "smooth", x: 2, y: 3},
33 {js: "auto", css: "auto", x: 3, y: 4}, 33 {js: "auto", css: "auto", x: 3, y: 4},
34 {js: "", css: "auto", x: 4, y: 5}, 34 {js: "", css: "auto", x: 4, y: 5},
(...skipping 25 matching lines...) Expand all
60 60
61 window.addEventListener('load', doTest, false); 61 window.addEventListener('load', doTest, false);
62 </script> 62 </script>
63 </head> 63 </head>
64 64
65 <body> 65 <body>
66 <p>Test that calling scrollBy on a subframe works with both scroll behaviors</ p> 66 <p>Test that calling scrollBy on a subframe works with both scroll behaviors</ p>
67 <iframe id="subframe" src="resources/large-subframe.html"></iframe> 67 <iframe id="subframe" src="resources/large-subframe.html"></iframe>
68 </body> 68 </body>
69 </html> 69 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698