mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Fix feature check for Gecko-specific assertions.
This commit is contained in:
parent
75c869d508
commit
33ac29e830
2 changed files with 2 additions and 2 deletions
|
@ -250,7 +250,7 @@ pub trait TElement : PartialEq + Debug + Sized + Copy + Clone + ElementExt + Pre
|
||||||
let data = self.borrow_data().unwrap();
|
let data = self.borrow_data().unwrap();
|
||||||
// See the comment on `cascade_node` about getting the up-to-date parent
|
// See the comment on `cascade_node` about getting the up-to-date parent
|
||||||
// style for why we allow this on Gecko.
|
// style for why we allow this on Gecko.
|
||||||
debug_assert!(cfg!(gecko) || data.has_current_styles());
|
debug_assert!(cfg!(feature = "gecko") || data.has_current_styles());
|
||||||
data.styles().is_display_none()
|
data.styles().is_display_none()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -739,7 +739,7 @@ pub trait MatchMethods : TElement {
|
||||||
// some small piece of newly-added content in order to do something
|
// some small piece of newly-added content in order to do something
|
||||||
// specific with that frame, but not wanting to flush all of
|
// specific with that frame, but not wanting to flush all of
|
||||||
// layout).
|
// layout).
|
||||||
debug_assert!(cfg!(gecko) || d.has_current_styles());
|
debug_assert!(cfg!(feature = "gecko") || d.has_current_styles());
|
||||||
&d.styles().primary.values
|
&d.styles().primary.values
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue