mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
When laying out the box tree from a dirty root, we were replacing the inner layout box contents of the dirty root, but not updating its parent. This change fixes that. This is important because any sort of operation that will need the parent will subsequently fail unless it is properly set. We do not use the parent now, but we will in the future. Testing: The parent is currently unused, but it will be used in the future. This shouldn't change the functioning of Servo currently. Signed-off-by: Martin Robinson <mrobinson@igalia.com>