diff options
author | Patrick Walton <pcwalton@mimiga.net> | 2015-09-10 18:06:37 -0700 |
---|---|---|
committer | Patrick Walton <pcwalton@mimiga.net> | 2015-09-10 18:07:21 -0700 |
commit | 99587cf105afddd802401cc170882af5dee4baa6 (patch) | |
tree | bcb8a336e3d6920a30bc5ecb3d1b0fa6b5bef59b /components/layout/sequential.rs | |
parent | f190ba360e41465d43972826b6715eb39e7b9822 (diff) | |
download | servo-99587cf105afddd802401cc170882af5dee4baa6.tar.gz servo-99587cf105afddd802401cc170882af5dee4baa6.zip |
layout: Allow the overflow area of the `<body>` to be scrolled.
Fixes scrolling on Twitter.
Diffstat (limited to 'components/layout/sequential.rs')
-rw-r--r-- | components/layout/sequential.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/layout/sequential.rs b/components/layout/sequential.rs index d557cc93b41..e1ceeb2714e 100644 --- a/components/layout/sequential.rs +++ b/components/layout/sequential.rs @@ -92,6 +92,8 @@ pub fn traverse_flow_tree_preorder(root: &mut FlowRef, let assign_block_sizes = AssignBSizesAndStoreOverflow { layout_context: &layout_context }; doit(root, assign_inline_sizes, assign_block_sizes); + + root.late_store_overflow(&layout_context); } pub fn build_display_list_for_subtree(root: &mut FlowRef, |