mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 529750 followup. Disable assert that actually fails at the moment to fix orange.
This commit is contained in:
parent
7e9e46aeee
commit
c928fa0f85
@ -62,8 +62,10 @@ public:
|
||||
}
|
||||
|
||||
void Forward(nsIStyleRule* aRule) {
|
||||
NS_PRECONDITION(!nsRefPtr<mozilla::css::StyleRule>(do_QueryObject(aRule)),
|
||||
"Calling the wrong Forward() overload");
|
||||
// We'd like to assert that this is not a StyleRule, but unfortunately
|
||||
// ResolveStyleByAddingRules can be passed both style and non-style rules.
|
||||
// NS_PRECONDITION(!nsRefPtr<mozilla::css::StyleRule>(do_QueryObject(aRule)),
|
||||
// "Calling the wrong Forward() overload");
|
||||
DoForward(aRule);
|
||||
}
|
||||
void Forward(mozilla::css::StyleRule* aRule) {
|
||||
|
Loading…
Reference in New Issue
Block a user