Index: LayoutTests/fast/scroll-behavior/subframe-scrollLeft.html |
diff --git a/LayoutTests/fast/scroll-behavior/subframe-scrollLeft.html b/LayoutTests/fast/scroll-behavior/subframe-scrollLeft.html |
index 1774a0d672bb1b51a1467310da10e513704bd78e..6a88c4762e3a499a22c1d6597655be293b349a6a 100644 |
--- a/LayoutTests/fast/scroll-behavior/subframe-scrollLeft.html |
+++ b/LayoutTests/fast/scroll-behavior/subframe-scrollLeft.html |
@@ -20,26 +20,16 @@ |
function jsScroll(testCase) { |
var subframe = document.getElementById("subframe"); |
- if (testCase.js) { |
- subframe.contentDocument.documentElement.scrollLeft = {x: testCase.x, behavior: testCase.js}; |
- } else { |
- subframe.contentDocument.documentElement.scrollLeft = testCase.x; |
- } |
+ subframe.contentDocument.documentElement.scrollLeft = testCase.x; |
} |
const testScrolls = [ |
- {js: "instant", css: "auto", x: 1, y: 0}, |
- {js: "instant", css: "smooth", x: 2, y: 0}, |
- {js: "auto", css: "auto", x: 3, y: 0}, |
- {js: "", css: "auto", x: 4, y: 0}, |
- {js: "smooth", css: "auto", waitForEnd: true, x: 10, y: 0}, |
- {js: "smooth", css: "smooth", waitForEnd: true, x: 20, y: 0}, |
- {js: "auto", css: "smooth", waitForEnd: true, x: 30, y: 0}, |
- {js: "", css: "smooth", waitForEnd: true, x: 40, y: 0}, |
- {js: "smooth", css: "auto", waitForEnd: false, x: 4000, y: 0}, |
- {js: "smooth", css: "smooth", waitForEnd: false, x: 15, y: 0}, |
- {js: "auto", css: "smooth", waitForEnd: false, x: 4100, y: 0}, |
- {js: "", css: "smooth", waitForEnd: false, x: 10, y: 0}, |
+ {css: "auto", x: 1, y: 0}, |
+ {css: "auto", x: 4, y: 0}, |
+ {css: "smooth", waitForEnd: true, x: 20, y: 0}, |
+ {css: "smooth", waitForEnd: true, x: 40, y: 0}, |
+ {css: "smooth", waitForEnd: false, x: 4000, y: 0}, |
+ {css: "smooth", waitForEnd: false, x: 10, y: 0}, |
]; |
function doTest() |