diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/scrolling/scroll-behavior-5.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/scrolling/scroll-behavior-5.html')
-rw-r--r-- | layout/reftests/scrolling/scroll-behavior-5.html | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/layout/reftests/scrolling/scroll-behavior-5.html b/layout/reftests/scrolling/scroll-behavior-5.html new file mode 100644 index 0000000000..e866e6905f --- /dev/null +++ b/layout/reftests/scrolling/scroll-behavior-5.html @@ -0,0 +1,109 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> +<head> + <meta charset="utf-8"> + <title>Testcase for bug 1010538 - Element.ScrollLeft and Element.ScrollTop scroll-behavior</title> + <style type="text/css"> + + html,body { + color: black; + background-color: white; + font-size: 16px; + padding: 0; + margin: 0; + } + + .a_box { + position: relative; + left: 0px; + top: 0px; + width: 20px; + height: 20px; + background: blue; + } + + .another_box { + position: relative; + left: 2000px; + top: 2000px; + width: 20px; + height: 20px; + background: green; + } + + .scroll_box { + width: 50px; + height: 50px; + overflow: scroll; + } + + #scroll_2, #scroll_4 { + scroll-behavior: auto; + } + + #scroll_5, #scroll_6 { + scroll-behavior: smooth; + } + + </style> +</head> +<body> + <div id="scroll_1" class="scroll_box"> + <div id="box1a" class="a_box"></div> + <div id="box1b" class="another_box"></div> + </div> + <div id="scroll_2" class="scroll_box"> + <div id="box2a" class="a_box"></div> + <div id="box2b" class="another_box"></div> + </div> + <div id="scroll_3" class="scroll_box"> + <div id="box3a" class="a_box"></div> + <div id="box3b" class="another_box"></div> + </div> + <div id="scroll_4" class="scroll_box"> + <div id="box4a" class="a_box"></div> + <div id="box4b" class="another_box"></div> + </div> + <div id="scroll_5" class="scroll_box"> + <div id="box5a" class="a_box"></div> + <div id="box5b" class="another_box"></div> + </div> + <div id="scroll_6" class="scroll_box"> + <div id="box6a" class="a_box"></div> + <div id="box6b" class="another_box"></div> + </div> +<script> + function doTest() { + if (document.location.search != '?ref') { + // Expect instantaneous scroll: + document.getElementById("scroll_1").scrollTo({left: 0, top: 0}); + document.getElementById("scroll_2").scrollTo({left: 0, top: 0}); + document.getElementById("scroll_3").scrollTo(0, 0); + document.getElementById("scroll_4").scrollTo(0, 0); + + // Expect smooth scroll: + document.getElementById("scroll_5").scrollTo({left: 0, top: 0}); + document.getElementById("scroll_6").scrollTo(0, 0); + + // Interrupt any smooth scrolling + for (var i=1; i <= 6; i++) { + document.getElementById("scroll_" + i).scrollTo(); + } + } else { + // Scroll all boxes except for box5a and box6a + for (var i=1; i <= 4; i++) { + document.getElementById("box" + i + "a").scrollIntoView({block: "end", behavior: "instant"}); + } + } + document.documentElement.removeAttribute("class"); + } + + for (var i=1; i <= 6; i++) { + document.getElementById("box" + i + "b") + .scrollIntoView({block: "start", behavior: "instant"}); + } + + window.addEventListener("MozReftestInvalidate", doTest); +</script> +</body> +</html> |