-
Notifications
You must be signed in to change notification settings - Fork 707
[css-cascade][css-transition] Should property aliasing/mapping applies to transition[-property]
?
#8022
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
Comments
|
Simple aliases are discussed in #866.
|
Well, I don't see https://drafts.csswg.org/css-transitions-1/#transition-property-property saying that idents should be normalized to lowercase (this should probably be filed as another issue). In fact it doesn't seem much consistent: document.body.style.transitionProperty = "lOreMipsUm, cOloR";
document.body.style.transitionProperty; // Implementations say "lOreMipsUm, color" Note that https://drafts.csswg.org/css-values-4/#identifier-value says
And even if Otherwise, imagine we add a property |
I agree. I also do not think a legacy property name should be replaced in a feature query. |
Same question for document.body.style.willChange = "word-wrap";
document.body.style.willChange; Firefox and Blink: |
I would like to know in which cases a property name should be replaced in the parsing/serialization of
transition-property
. It does not seem clearly defined in CSS Cascade.The output in Chrome for
style.cssText
istransition-property: word-wrap, grid-row-gap, page-break-before, -webkit-background-size, -webkit-box-ordinal-group;
.The output in Firefox is
transition-property: overflow-wrap, row-gap, page-break-before, background-size, -moz-box-ordinal-group;
.The text was updated successfully, but these errors were encountered: