Open
Bug 1557437
Opened 5 years ago
Updated 2 years ago
getOMTAStyle should return a valid string in delay phase
Categories
(Core :: CSS Transitions and Animations, enhancement, P4)
Core
CSS Transitions and Animations
Tracking
()
NEW
People
(Reporter: boris, Unassigned)
References
Details
It seems getOMTAStyle()
returns an empty string in delay phase (even though we send the animations into the compositor) [1]. It'd be better to return a valid string to know its status.
Note: In this case, the SampleResult
is None.
Comment 1•5 years ago
|
||
I just happened to remember there is an API to get transform values on the compositor, its name is getOMTCTransform
, it might be sufficient for the test case in question.
Reporter | ||
Comment 2•5 years ago
|
||
Oh yes. I got a matrix like this matrix(1.25, 0, 0, 1.25, 87.5, -12.5)
. It seems there is a -1.25 offset on the translate part (note: what I expected is matrix(1.25, 0, 0, 1.25, 100, 0)
). I haven't checked the code yet, but this works in delay phase (though it's a little bit different from the expected matrix).
Updated•2 years ago
|
Severity: normal normal → S3 S3
You need to log in
before you can comment on or make changes to this bug.
Description
•