Unprefixed transition doesn't support inheritance even though its value is 'inherit' unlike prefixed transition.
Created attachment 259138 [details] Patch
Comment on attachment 259138 [details] Patch Does the inherited transition actually work correctly?
(In reply to comment #2) > Comment on attachment 259138 [details] > Patch > > Does the inherited transition actually work correctly? Yes, it works. My test CSS: #parent { text-indent: 0px; transition-property: text-indent; transition-duration: 3s; } #child { transition: inherit; } #child:hover { text-indent: 100px; } Text in #child is moving.
review ?