diff options
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-hidden-scrollLeft.html')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-hidden-scrollLeft.html | 24 |
1 files changed, 7 insertions, 17 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-hidden-scrollLeft.html b/third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-hidden-scrollLeft.html index 731fac6..bc6123e 100644 --- a/third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-hidden-scrollLeft.html +++ b/third_party/WebKit/LayoutTests/fast/scroll-behavior/overflow-hidden-scrollLeft.html @@ -27,26 +27,16 @@ function jsScroll(testCase) { var element = document.getElementById("container"); - if (testCase.js) { - element.scrollLeft = {x: testCase.x, behavior: testCase.js}; - } else { - element.scrollLeft = testCase.x; - } + element.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() |