Index: LayoutTests/fast/scroll-behavior/subframe-scrollTop.html |
diff --git a/LayoutTests/fast/scroll-behavior/subframe-scrollTop.html b/LayoutTests/fast/scroll-behavior/subframe-scrollTop.html |
index a146e8489fa4c12b54a9d818084dc0660ab33a47..885058252fb27fece5556941773bba0abc447ee2 100644 |
--- a/LayoutTests/fast/scroll-behavior/subframe-scrollTop.html |
+++ b/LayoutTests/fast/scroll-behavior/subframe-scrollTop.html |
@@ -20,26 +20,16 @@ |
function jsScroll(testCase) { |
var subframe = document.getElementById("subframe"); |
- if (testCase.js) { |
- subframe.contentDocument.documentElement.scrollTop = {y: testCase.y, behavior: testCase.js}; |
- } else { |
- subframe.contentDocument.documentElement.scrollTop = testCase.y; |
- } |
+ subframe.contentDocument.documentElement.scrollTop = testCase.y; |
} |
const testScrolls = [ |
- {js: "instant", css: "auto", x: 0, y: 2}, |
- {js: "instant", css: "smooth", x: 0, y: 3}, |
- {js: "auto", css: "auto", x: 0, y: 4}, |
- {js: "", css: "auto", x: 0, y: 5}, |
- {js: "smooth", css: "auto", waitForEnd: true, x: 0, y: 15}, |
- {js: "smooth", css: "smooth", waitForEnd: true, x: 0, y: 25}, |
- {js: "auto", css: "smooth", waitForEnd: true, x: 0, y: 35}, |
- {js: "", css: "smooth", waitForEnd: true, x: 0, y: 45}, |
- {js: "smooth", css: "auto", waitForEnd: false, x: 0, y: 4100}, |
- {js: "smooth", css: "smooth", waitForEnd: false, x: 0, y: 20}, |
- {js: "auto", css: "smooth", waitForEnd: false, x: 0, y: 4000}, |
- {js: "", css: "smooth", waitForEnd: false, x: 0, y: 5}, |
+ {css: "auto", x: 0, y: 2}, |
+ {css: "auto", x: 0, y: 4}, |
+ {css: "smooth", waitForEnd: true, x: 0, y: 25}, |
+ {css: "smooth", waitForEnd: true, x: 0, y: 45}, |
+ {css: "smooth", waitForEnd: false, x: 0, y: 4100}, |
+ {css: "smooth", waitForEnd: false, x: 0, y: 20}, |
]; |
function doTest() |