| OLD | NEW |
| 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> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 } | 26 } |
| 27 | 27 |
| 28 function jsScroll(testCase) { | 28 function jsScroll(testCase) { |
| 29 var subframe = document.getElementById("subframe"); | 29 var subframe = document.getElementById("subframe"); |
| 30 if (testCase.js) { | 30 if (testCase.js) { |
| 31 var scrollToOptions = {behavior: testCase.js}; | 31 var scrollToOptions = {behavior: testCase.js}; |
| 32 if (testCase.x) | 32 if (testCase.x) |
| 33 scrollToOptions.left = testCase.x; | 33 scrollToOptions.left = testCase.x; |
| 34 if (testCase.y) | 34 if (testCase.y) |
| 35 scrollToOptions.top = testCase.y; | 35 scrollToOptions.top = testCase.y; |
| 36 subframe.contentDocument.body.scrollBy(scrollToOptions); | 36 subframe.contentDocument.scrollingElement.scrollBy(scrollToOptions); |
| 37 } else { | 37 } else { |
| 38 subframe.contentDocument.body.scrollBy(testCase.x, testCase.y); | 38 subframe.contentDocument.scrollingElement.scrollBy(testCase.x, testCase.
y); |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 | 41 |
| 42 const testScrolls = [ | 42 const testScrolls = [ |
| 43 {js: "instant", css: "auto", x: 1, y: 2}, | 43 {js: "instant", css: "auto", x: 1, y: 2}, |
| 44 {js: "instant", css: "smooth", x: 2, y: 3}, | 44 {js: "instant", css: "smooth", x: 2, y: 3}, |
| 45 {js: "auto", css: "auto", x: 3, y: 4}, | 45 {js: "auto", css: "auto", x: 3, y: 4}, |
| 46 {js: "", css: "auto", x: 4, y: 5}, | 46 {js: "", css: "auto", x: 4, y: 5}, |
| 47 {js: "auto", css: "auto", x: 3}, | 47 {js: "auto", css: "auto", x: 3}, |
| 48 {js: "auto", css: "auto", y: 4}, | 48 {js: "auto", css: "auto", y: 4}, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 60 ]; | 60 ]; |
| 61 | 61 |
| 62 function doTest() | 62 function doTest() |
| 63 { | 63 { |
| 64 var testCases = []; | 64 var testCases = []; |
| 65 for (var i = 0; i < testScrolls.length; i++) { | 65 for (var i = 0; i < testScrolls.length; i++) { |
| 66 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); | 66 testCases.push(new ScrollBehaviorTestCase(testScrolls[i])); |
| 67 } | 67 } |
| 68 | 68 |
| 69 var subframe = document.getElementById("subframe"); | 69 var subframe = document.getElementById("subframe"); |
| 70 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.b
ody, | 70 var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.s
crollingElement, |
| 71 subframe.contentDocument, | 71 subframe.contentDocument, |
| 72 testCases, | 72 testCases, |
| 73 getEndPosition, | 73 getEndPosition, |
| 74 jsScroll); | 74 jsScroll); |
| 75 scrollBehaviorTest.run(); | 75 scrollBehaviorTest.run(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 window.addEventListener('load', doTest, false); | 78 window.addEventListener('load', doTest, false); |
| 79 </script> | 79 </script> |
| 80 </head> | 80 </head> |
| 81 | 81 |
| 82 <body> | 82 <body> |
| 83 <p>Test that calling scrollBy on a subframe's document element works with both
scroll behaviors</p> | 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> | 84 <iframe id="subframe" src="resources/large-subframe.html"></iframe> |
| 85 </body> | 85 </body> |
| 86 </html> | 86 </html> |
| OLD | NEW |