mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Log when we can't use async animations due to pseudos, no bug, r=cjones
This commit is contained in:
parent
ed76a52681
commit
be2e552065
@ -300,6 +300,9 @@ bool
|
||||
ElementAnimations::CanPerformOnCompositorThread() const
|
||||
{
|
||||
if (mElementProperty != nsGkAtoms::animationsProperty) {
|
||||
if (nsLayoutUtils::IsAnimationLoggingEnabled()) {
|
||||
printf_stderr("Gecko bug: Async animation of pseudoelements not supported. See bug 771367\n");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
bool hasGeometricProperty = false;
|
||||
|
@ -128,6 +128,9 @@ bool
|
||||
ElementTransitions::CanPerformOnCompositorThread() const
|
||||
{
|
||||
if (mElementProperty != nsGkAtoms::transitionsProperty) {
|
||||
if (nsLayoutUtils::IsAnimationLoggingEnabled()) {
|
||||
printf_stderr("Gecko bug: Async animation of pseudoelements not supported. See bug 771367\n");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
bool hasGeometricProperty = false;
|
||||
|
Loading…
Reference in New Issue
Block a user