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