mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Auto merge of #17385 - pyfisch:better-scroll, r=mrobinson
Fix several bugs related to scrolling * scrollLeft/scrollTop returned values of parent or even document root Only the scroll of the node itself is returned. Otherwise 0.0. * Scrolling via script had set viewport. This resulted in other nodes appearing scrolled. Now scroll_offsets are updated with correct node id. These bugs caused other odd behavior like both body and document.documentElement being scrolled or the view for scrolled elements jumping. Also try scrolling this [example page](https://pyfisch.org/stuff/scrolltest.html) in servo with and without this change. <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #17342 (github issue number if applicable). <!-- Either: --> - [x] There are tests for these changes (partially) <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17385) <!-- Reviewable:end -->
This commit is contained in:
commit
626c029623
6 changed files with 33 additions and 25 deletions
|
@ -553578,7 +553578,7 @@
|
|||
"testharness"
|
||||
],
|
||||
"cssom-view/elementScroll.html": [
|
||||
"5471dca08aae9d446c487d40853957e9290677f3",
|
||||
"56d85d2973ad630dd28842df6479b1f571b7f340",
|
||||
"testharness"
|
||||
],
|
||||
"cssom-view/elementsFromPoint.html": [
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
[003.html]
|
||||
type: testharness
|
||||
[Fragment Navigation: Updating scroll position]
|
||||
expected: FAIL
|
|
@ -33,12 +33,14 @@
|
|||
|
||||
Curabitur elit lacus, bibendum non tempus a, bibendum sit amet ante. Mauris eget nibh quis leo rhoncus consequat. Integer iaculis sed sapien eu pellentesque. In aliquet elementum lorem, ut consequat elit ultrices id. Phasellus vestibulum ex ex, ac sagittis tortor convallis et. Curabitur placerat id lectus at aliquam. Morbi sed nisl sem. Nam sit amet arcu maximus, volutpat nisl ac, dignissim neque. Etiam nec efficitur libero. Quisque tristique pulvinar est, eget dictum ex vehicula non. Nam dignissim non felis a iaculis. Nullam vel dolor vitae libero aliquet congue. Donec mi eros, semper non lectus at, commodo ullamcorper ligula. Donec commodo, sem vel lacinia porttitor, elit orci maximus felis, eget eleifend est velit id lorem.
|
||||
</div>
|
||||
<div id="unrelated"></div>
|
||||
</section>
|
||||
|
||||
<script>
|
||||
setup({explicit_done:true});
|
||||
window.onload = function () {
|
||||
var section = document.getElementById("section");
|
||||
var unrelated = document.getElementById("unrelated");
|
||||
|
||||
test(function () {
|
||||
assert_equals(section.scrollTop, 0, "initial scrollTop should be 0");
|
||||
|
@ -49,6 +51,9 @@
|
|||
|
||||
assert_equals(section.scrollTop, 30, "changed scrollTop should be 40");
|
||||
assert_equals(section.scrollLeft, 40, "changed scrollLeft should be 40");
|
||||
|
||||
assert_equals(unrelated.scrollTop, 0, "unrelated element should not scroll");
|
||||
assert_equals(unrelated.scrollLeft, 0, "unrelated element should not scroll");
|
||||
}, "Element scrollTop/Left getter/setter test");
|
||||
|
||||
test(function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue