diff --git a/components/layout/inline.rs b/components/layout/inline.rs index e115810a972..f28e583460f 100644 --- a/components/layout/inline.rs +++ b/components/layout/inline.rs @@ -1789,7 +1789,7 @@ impl InlineFragmentContext { return false } for (this_node, other_node) in self.nodes.iter().zip(&other.nodes) { - if !arc_ptr_eq(&this_node.style, &other_node.style) { + if this_node.address != other_node.address { return false } }