-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firefox 126 removed / Nightly unremoved some moz-prefixed CSS properties #25300
Firefox 126 removed / Nightly unremoved some moz-prefixed CSS properties #25300
Conversation
I am not sure how to fix the data error here. The first version it is is complaining about predates my change. I also don't want to follow the instruction to remove that preference, since it is an accurate reflection of the code. |
"flags": [ | ||
{ | ||
"type": "preference", | ||
"name": "layout.css.prefixes.transforms", | ||
"value_to_set": "true" | ||
} | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here.
@@ -39,7 +39,7 @@ | |||
{ | |||
"prefix": "-moz-", | |||
"version_added": "4", | |||
"version_removed": "preview" | |||
"version_removed": "126" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ The transition-*
changes from here and below LGTM.
Thanks! All fixed - and thanks for the explanation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just replacing one range:
Co-authored-by: Claas Augner <[email protected]>
Thanks for all the help with this @caugner |
This reverts the
layout.css.prefixes.transforms
prefixed changes made in #21195 to reenable the-moz
prefixed transforms:-moz-backface-visibility
-moz-perspective-origin
-moz-perspective
-moz-transform-origin
-moz-transform-style
-moz-transform
This was done in https://bugzilla.mozilla.org/show_bug.cgi?id=1886134 - I've removed the original nightly changes invisible and replaced it with the preference, since that is what makes most sense.
FF126 also sets the following as false by default (removes the following) as part of adding CSS zoom in https://bugzilla.mozilla.org/show_bug.cgi?id=390936
-moz-transition-delay
-moz-transition-duration
-moz-transition-property
-moz-transition-timing-function
-moz-transition
For those it changes preview to 126.
This fell out of checks in mdn/content#36742