Auto merge of #14582 - heycam:cfg, r=emilio

fix feature check for Gecko-specific assertions

r? @emilio

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14582)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-12-14 05:13:17 -08:00 committed by GitHub
commit 65b891c23f
2 changed files with 2 additions and 2 deletions

View file

@ -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()
}

View file

@ -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
});