Fixed RTL reversion doesn't work if declaration is not ended by semicolon

refael

Well-known member
HTML:
.test{float: left;}
Will become `float: right;`.

But
HTML:
.test{float: left}
Will stay `float: left`.

You may say this can be avoided by just adding the semicolon,
but I hope there is something that can be done for make it work in syntax without semicolon.
 
Top Bottom