mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Disable incremental reflow for multicol and their descendants.
Fragmentation with dynamic updates is hard.
This commit is contained in:
parent
357463864b
commit
da2b4ab381
6 changed files with 41 additions and 1 deletions
|
@ -1318,6 +1318,9 @@ impl<'a, 'ln, ConcreteThreadSafeLayoutNode: ThreadSafeLayoutNode<'ln>>
|
|||
return false
|
||||
}
|
||||
|
||||
if node.in_fragmentation_container() {
|
||||
return false
|
||||
}
|
||||
|
||||
let mut style = node.style().clone();
|
||||
let mut data = node.mutate_layout_data().unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue