diff options
Diffstat (limited to 'components/script/dom/range.rs')
-rw-r--r-- | components/script/dom/range.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/components/script/dom/range.rs b/components/script/dom/range.rs index 7033ce82834..72bd5350f6d 100644 --- a/components/script/dom/range.rs +++ b/components/script/dom/range.rs @@ -127,13 +127,13 @@ impl Range { /// <https://dom.spec.whatwg.org/#contained> fn contains(&self, node: &Node) -> bool { - match ( - bp_position(node, 0, &self.start_container(), self.start_offset()), - bp_position(node, node.len(), &self.end_container(), self.end_offset()), - ) { - (Some(Ordering::Greater), Some(Ordering::Less)) => true, - _ => false, - } + matches!( + ( + bp_position(node, 0, &self.start_container(), self.start_offset()), + bp_position(node, node.len(), &self.end_container(), self.end_offset()), + ), + (Some(Ordering::Greater), Some(Ordering::Less)) + ) } /// <https://dom.spec.whatwg.org/#partially-contained> |