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.
This commit is contained in:
Pyfisch 2017-06-17 15:33:34 +02:00
parent effd6f2f87
commit 284cb8aae8
6 changed files with 33 additions and 25 deletions

View file

@ -703,6 +703,7 @@ impl Document {
// Step 3 // Step 3
let global_scope = self.window.upcast::<GlobalScope>(); let global_scope = self.window.upcast::<GlobalScope>();
let webrender_pipeline_id = global_scope.pipeline_id().to_webrender(); let webrender_pipeline_id = global_scope.pipeline_id().to_webrender();
self.window.update_viewport_for_scroll(x, y);
self.window.perform_a_scroll(x, self.window.perform_a_scroll(x,
y, y,
ClipId::root_scroll_node(webrender_pipeline_id), ClipId::root_scroll_node(webrender_pipeline_id),

View file

@ -1356,7 +1356,7 @@ impl Element {
// Step 10 (TODO) // Step 10 (TODO)
// Step 11 // Step 11
win.scroll_node(node.to_trusted_node_address(), x, y, behavior); win.scroll_node(node, x, y, behavior);
} }
// https://w3c.github.io/DOM-Parsing/#parsing // https://w3c.github.io/DOM-Parsing/#parsing
@ -1794,7 +1794,7 @@ impl ElementMethods for Element {
// Step 10 (TODO) // Step 10 (TODO)
// Step 11 // Step 11
win.scroll_node(node.to_trusted_node_address(), self.ScrollLeft(), y, behavior); win.scroll_node(node, self.ScrollLeft(), y, behavior);
} }
// https://drafts.csswg.org/cssom-view/#dom-element-scrolltop // https://drafts.csswg.org/cssom-view/#dom-element-scrolltop
@ -1887,7 +1887,7 @@ impl ElementMethods for Element {
// Step 10 (TODO) // Step 10 (TODO)
// Step 11 // Step 11
win.scroll_node(node.to_trusted_node_address(), x, self.ScrollTop(), behavior); win.scroll_node(node, x, self.ScrollTop(), behavior);
} }
// https://drafts.csswg.org/cssom-view/#dom-element-scrollwidth // https://drafts.csswg.org/cssom-view/#dom-element-scrollwidth

View file

@ -13,7 +13,6 @@ use dom::bindings::codegen::Bindings::EventHandlerBinding::EventHandlerNonNull;
use dom::bindings::codegen::Bindings::EventHandlerBinding::OnBeforeUnloadEventHandlerNonNull; use dom::bindings::codegen::Bindings::EventHandlerBinding::OnBeforeUnloadEventHandlerNonNull;
use dom::bindings::codegen::Bindings::EventHandlerBinding::OnErrorEventHandlerNonNull; use dom::bindings::codegen::Bindings::EventHandlerBinding::OnErrorEventHandlerNonNull;
use dom::bindings::codegen::Bindings::FunctionBinding::Function; use dom::bindings::codegen::Bindings::FunctionBinding::Function;
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
use dom::bindings::codegen::Bindings::PermissionStatusBinding::PermissionState; use dom::bindings::codegen::Bindings::PermissionStatusBinding::PermissionState;
use dom::bindings::codegen::Bindings::RequestBinding::RequestInit; use dom::bindings::codegen::Bindings::RequestBinding::RequestInit;
use dom::bindings::codegen::Bindings::WindowBinding::{self, FrameRequestCallback, WindowMethods}; use dom::bindings::codegen::Bindings::WindowBinding::{self, FrameRequestCallback, WindowMethods};
@ -1126,8 +1125,11 @@ impl Window {
//let document = self.Document(); //let document = self.Document();
// Step 12 // Step 12
let global_scope = self.upcast::<GlobalScope>(); let global_scope = self.upcast::<GlobalScope>();
self.perform_a_scroll(x.to_f32().unwrap_or(0.0f32), let x = x.to_f32().unwrap_or(0.0f32);
y.to_f32().unwrap_or(0.0f32), let y = y.to_f32().unwrap_or(0.0f32);
self.update_viewport_for_scroll(x, y);
self.perform_a_scroll(x,
y,
global_scope.pipeline_id().root_scroll_node(), global_scope.pipeline_id().root_scroll_node(),
behavior, behavior,
None); None);
@ -1158,9 +1160,6 @@ impl Window {
scroll_offset: Vector2D::new(-x, -y), scroll_offset: Vector2D::new(-x, -y),
})).unwrap(); })).unwrap();
// TODO (farodin91): Raise an event to stop the current_viewport
self.update_viewport_for_scroll(x, y);
let global_scope = self.upcast::<GlobalScope>(); let global_scope = self.upcast::<GlobalScope>();
let message = ConstellationMsg::ScrollFragmentPoint(scroll_root_id, point, smooth); let message = ConstellationMsg::ScrollFragmentPoint(scroll_root_id, point, smooth);
global_scope.constellation_chan().send(message).unwrap(); global_scope.constellation_chan().send(message).unwrap();
@ -1450,33 +1449,32 @@ impl Window {
} }
pub fn scroll_offset_query(&self, node: &Node) -> Vector2D<f32> { pub fn scroll_offset_query(&self, node: &Node) -> Vector2D<f32> {
let mut node = Root::from_ref(node); if let Some(scroll_offset) = self.scroll_offsets
loop { .borrow()
if let Some(scroll_offset) = self.scroll_offsets .get(&node.to_untrusted_node_address()) {
.borrow() return *scroll_offset
.get(&node.to_untrusted_node_address()) {
return *scroll_offset
}
node = match node.GetParentNode() {
Some(node) => node,
None => break,
}
} }
let vp_origin = self.current_viewport.get().origin; Vector2D::new(0.0, 0.0)
Vector2D::new(vp_origin.x.to_f32_px(), vp_origin.y.to_f32_px())
} }
// https://drafts.csswg.org/cssom-view/#dom-element-scroll // https://drafts.csswg.org/cssom-view/#dom-element-scroll
pub fn scroll_node(&self, pub fn scroll_node(&self,
node: TrustedNodeAddress, node: &Node,
x_: f64, x_: f64,
y_: f64, y_: f64,
behavior: ScrollBehavior) { behavior: ScrollBehavior) {
if !self.reflow(ReflowGoal::ForScriptQuery, if !self.reflow(ReflowGoal::ForScriptQuery,
ReflowQueryType::NodeScrollRootIdQuery(node), ReflowQueryType::NodeScrollRootIdQuery(node.to_trusted_node_address()),
ReflowReason::Query) { ReflowReason::Query) {
return; return;
} }
// The scroll offsets are immediatly updated since later calls
// to topScroll and others may access the properties before
// webrender has a chance to update the offsets.
self.scroll_offsets.borrow_mut().insert(node.to_untrusted_node_address(),
Vector2D::new(x_ as f32, y_ as f32));
let NodeScrollRootIdResponse(scroll_root_id) = self.layout_rpc.node_scroll_root_id(); let NodeScrollRootIdResponse(scroll_root_id) = self.layout_rpc.node_scroll_root_id();
// Step 12 // Step 12

View file

@ -553488,7 +553488,7 @@
"testharness" "testharness"
], ],
"cssom-view/elementScroll.html": [ "cssom-view/elementScroll.html": [
"5471dca08aae9d446c487d40853957e9290677f3", "56d85d2973ad630dd28842df6479b1f571b7f340",
"testharness" "testharness"
], ],
"cssom-view/elementsFromPoint.html": [ "cssom-view/elementsFromPoint.html": [

View file

@ -0,0 +1,4 @@
[003.html]
type: testharness
[Fragment Navigation: Updating scroll position]
expected: FAIL

View file

@ -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. 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>
<div id="unrelated"></div>
</section> </section>
<script> <script>
setup({explicit_done:true}); setup({explicit_done:true});
window.onload = function () { window.onload = function () {
var section = document.getElementById("section"); var section = document.getElementById("section");
var unrelated = document.getElementById("unrelated");
test(function () { test(function () {
assert_equals(section.scrollTop, 0, "initial scrollTop should be 0"); 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.scrollTop, 30, "changed scrollTop should be 40");
assert_equals(section.scrollLeft, 40, "changed scrollLeft 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"); }, "Element scrollTop/Left getter/setter test");
test(function () { test(function () {