Vendor Prefix -moz-transform broken in Firefox 126.0
Categories
(Core :: CSS Parsing and Computation, defect)
Tracking
()
People
(Reporter: jeromejjcho, Unassigned)
References
(Regression)
Details
(Keywords: regression)
User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:126.0) Gecko/20100101 Firefox/126.0
Steps to reproduce:
Set style of HTML element bty using element.style.setProperty('-moz-transform', QUANTITY)
in Firefox 126.0. This does not happen in Firefox 125.0
Actual results:
Style was not set in Firefox. HTML element did not transform in the intended way.
Expected results:
HTML element should have transformed in the intended way.
Comment 1•8 months ago
|
||
The Bugbug bot thinks this bug should belong to the 'Core::CSS Parsing and Computation' component, and is moving the bug to that component. Please correct in case you think the bot is wrong.
Comment 2•8 months ago
|
||
This was an intended change to prevent issues with the newly implemented zoom property unfortunately, see bug 1855763.
Comment 3•8 months ago
|
||
The recommended workaround for web developers is to simply use transform
instead of -moz-transform
.
(Vendor-prefixed CSS properties are always meant to be "tentative" and not intended to be relied upon or supported-forever, though there are a few counterexamples where the web has accidentally grown to depend on some.)
Description
•