mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +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
|
@ -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
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue