Firefox on mac os does not render -moz-transform css property
Categories
(Core :: CSS Parsing and Computation, defect)
Tracking
()
People
(Reporter: vldmr.rr+bus, Unassigned)
Details
Steps to reproduce:
Here is simple example (https://jsfiddle.net/fxtg6c2e/)
HTML: <div id="one">ONE</div><div id="two">TWO</div>
CSS: #one { position:absolute; background-color: blue; -moz-transform: translate3d(0,30px,0);}
Actual results:
On mac os text "ONE" is rendered on top of text "TWO".
Expected results:
On windows text "ONE" is rendered under text "TWO". This same behaviour existed in earlier versions of Firefox on mac os
Comment 1•4 months ago
|
||
This is broken in release (128.0.3), beta (129 RC), but working on Nightly (20240729204357).
Not sure if it was fixed (likely), or Nightly has some other setting that avoids the issue.
Comment 2•4 months ago
|
||
"fixed" by :
Bug 1901497 - Enable -moz- transform prefixes on nightly again. r=webcompat-reviewers,twisniewski
This changes the approach of zoom+moz-transform compat on Nightly, on
the basis that its easier to site-patch stuff that uses both
-moz-transform and zoom (to disable either of them via CSS) than working
around bogus UA sniffing or feature detection that is sorta-reasonable
(like assuming that if "MozTransform" is in the CSSStyleDeclaration
object, then -moz-transform
works).
If breakage from this is too severe, or the hypothesis above doesn't
hold, then we need to re-evaluate this in some other way.
Differential Revision: https://phabricator.services.mozilla.com/D216840
Reporter | ||
Updated•1 month ago
|
Reporter | ||
Comment 3•1 month ago
|
||
This is still broken in vesrion 131 on mac. It does work on windows
Description
•