Index: LayoutTests/fast/scroll-behavior/main-frame-scrollLeft.html |
diff --git a/LayoutTests/fast/scroll-behavior/main-frame-scrollLeft.html b/LayoutTests/fast/scroll-behavior/main-frame-scrollLeft.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d778fc8e423e19284e0cd901bd3c7d47852c0453 |
--- /dev/null |
+++ b/LayoutTests/fast/scroll-behavior/main-frame-scrollLeft.html |
@@ -0,0 +1,65 @@ |
+<!DOCTYPE html> |
+<html> |
+<head> |
+ <style> |
+ #content { |
+ width: 7500px; |
+ height: 7500px; |
+ background-color: blue; |
+ } |
+ </style> |
+ <script src="../../resources/testharness.js"></script> |
+ <script src="../../resources/testharnessreport.js"></script> |
+ <script src="resources/scroll-behavior-test.js"></script> |
+ <script type="text/javascript"> |
+ function MainFrameScrollLeftTestCase(testData) { |
+ ScrollBehaviorTestCase.call(this, testData); |
+ } |
+ MainFrameScrollLeftTestCase.prototype = Object.create(ScrollBehaviorTestCase.prototype); |
+ MainFrameScrollLeftTestCase.constructor = MainFrameScrollLeftTestCase; |
+ MainFrameScrollLeftTestCase.prototype.run = function() { |
+ document.documentElement.style.scrollBehavior = this.css; |
+ if (this.js) { |
+ document.documentElement.scrollLeft = {x: this.x, behavior: this.js}; |
+ } else { |
+ document.documentElement.scrollLeft = this.x; |
+ } |
+ } |
+ |
+ const testScrolls = [ |
+ {js: "instant", css: "instant", x: 1, y: 0}, |
+ {js: "instant", css: "smooth", x: 2, y: 0}, |
+ {js: "auto", css: "instant", x: 3, y: 0}, |
+ {js: "", css: "instant", x: 4, y: 0}, |
+ {js: "smooth", css: "instant", 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: "instant", 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}, |
+ ]; |
+ |
+ function doTest() |
+ { |
+ var testCases = []; |
+ for (var i = 0; i < testScrolls.length; i++) { |
+ testCases.push(new MainFrameScrollLeftTestCase(testScrolls[i])); |
+ } |
+ |
+ var scrollBehaviorTest = new ScrollBehaviorTest(document.documentElement, |
+ document, |
+ testCases); |
+ scrollBehaviorTest.run(); |
+ } |
+ |
+ window.addEventListener('load', doTest, false); |
+ </script> |
+</head> |
+ |
+<body> |
+ <p>Test that setting scrollLeft on the main frame works with both scroll behaviors</p> |
+ <div id="content"></div> |
+</body> |
+</html> |