diff --git a/remote/marionette/element.js b/remote/marionette/element.js index f9307e9e928f..7da71ac1456a 100644 --- a/remote/marionette/element.js +++ b/remote/marionette/element.js @@ -1247,7 +1247,7 @@ element.isKeyboardInteractable = () => true; */ element.scrollIntoView = function(el) { if (el.scrollIntoView) { - el.scrollIntoView({ block: "end", inline: "nearest", behavior: "instant" }); + el.scrollIntoView({ block: "end", inline: "nearest" }); } };