Fixed a bug in prefixing properties#138
Fixed a bug in prefixing properties#138breezewish wants to merge 2 commits intoLeaVerou:gh-pagesfrom breezewish:gh-pages
Conversation
|
Thanks!! |
|
Oh...yes, just made a small mistake. My parents ask me to sleep now so I'll commit it 8 hours later and I think you wont mind of it :) |
|
Damn, I’m sorry @summerwish! I didn't get a notification you made the change and I forgot to merge ...for 3 years (embarrassed face). |
|
I wanted to rebase this and submit it as another PR (it would have preserved @breeswish's authorship) but the branch has been deleted in the mean time, and the detached head does not appear in my local tree... @LeaVerou FYI you can now reslove conflicts from the Web UI. |
|
@pygy thanks, good to know! Sadly, this one is not resolvable via the Github UI, the button is not there… |
|
@pygy Feel free to open a new PR with your commits :) |
I fixed a bug that PrefixFree works incorrectly when a CSS rule misses '
;' but has a name with a property keyword (this usually happens after compressing the CSS file).Bug reproduce:
#one{transition:all .2s linear}.transform{}#another{display:block;}#one{transition:all .2s linear}#user-select{}#another{display:block;}will be rendered to the followings (Firefox/Webkit/Opera):
#one{-moz-transition:all .2s linear}.-moz-transform{}#another{display:block;}#one{-moz-transition:all .2s linear}#-moz-user-select{}#another{display:block;}