This repository was archived by the owner on Apr 4, 2019. It is now read-only.
This repository was archived by the owner on Apr 4, 2019. It is now read-only.
Bug with handling / in interpolation #48
Open
Description
From sass/sass#2160:
@nex3 confirmed this is a bug. There is currently a sass spec asserting this broken behaviour which is causing LibSass to fail CI.
h1 { delayd: #{5% / 2}; delayd: #{+5% / 2}; evaled: #{-5% / 2}; }Sass 3.4.21
h1 { delayd: 5%/2; delayd: 5%/2; evaled: -2.5%; }Expected
h1 { delayd: 5%/2; delayd: 5%/2; evaled: -5%/2; }