diff options
author | Cameron McCormack <cam@mcc.id.au> | 2016-12-14 13:53:09 +0800 |
---|---|---|
committer | Cameron McCormack <cam@mcc.id.au> | 2016-12-14 13:53:09 +0800 |
commit | 33ac29e830639030939193098db289202adb47b0 (patch) | |
tree | 582152e4fff8938c5f76d0a445a01c9811122871 | |
parent | 75c869d508231a216413808d80d6e02dec3ced6c (diff) | |
download | servo-33ac29e830639030939193098db289202adb47b0.tar.gz servo-33ac29e830639030939193098db289202adb47b0.zip |
Fix feature check for Gecko-specific assertions.
-rw-r--r-- | components/style/dom.rs | 2 | ||||
-rw-r--r-- | components/style/matching.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/components/style/dom.rs b/components/style/dom.rs index 5017c1fd24e..a5c308cfa9a 100644 --- a/components/style/dom.rs +++ b/components/style/dom.rs @@ -250,7 +250,7 @@ pub trait TElement : PartialEq + Debug + Sized + Copy + Clone + ElementExt + Pre let data = self.borrow_data().unwrap(); // See the comment on `cascade_node` about getting the up-to-date parent // 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() } diff --git a/components/style/matching.rs b/components/style/matching.rs index 4ea43a1c461..fc79e075421 100644 --- a/components/style/matching.rs +++ b/components/style/matching.rs @@ -739,7 +739,7 @@ pub trait MatchMethods : TElement { // some small piece of newly-added content in order to do something // specific with that frame, but not wanting to flush all of // layout). - debug_assert!(cfg!(gecko) || d.has_current_styles()); + debug_assert!(cfg!(feature = "gecko") || d.has_current_styles()); &d.styles().primary.values }); |