RESOLVED INVALID148074
Unprefixed CSS transition should inherit its value from its parent element
https://bugs.webkit.org/show_bug.cgi?id=148074
Summary Unprefixed CSS transition should inherit its value from its parent element
Jaehun Lim
Reported 2015-08-17 00:40:11 PDT
Unprefixed transition doesn't support inheritance even though its value is 'inherit' unlike prefixed transition.
Attachments
Patch (10.63 KB, patch)
2015-08-17 00:50 PDT, Jaehun Lim
no flags
Jaehun Lim
Comment 1 2015-08-17 00:50:51 PDT
Simon Fraser (smfr)
Comment 2 2015-08-17 17:41:22 PDT
Comment on attachment 259138 [details] Patch Does the inherited transition actually work correctly?
Jaehun Lim
Comment 3 2015-08-17 18:48:57 PDT
(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.
Jaehun Lim
Comment 4 2015-09-02 00:07:41 PDT
review ?
Note You need to log in before you can comment on or make changes to this bug.