Skip to content
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.

Bug with handling / in interpolation #48

Open
nex3 opened this issue Apr 6, 2018 · 0 comments
Open

Bug with handling / in interpolation #48

nex3 opened this issue Apr 6, 2018 · 0 comments
Labels
bug Something isn't working

Comments

@nex3
Copy link
Contributor

nex3 commented Apr 6, 2018

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;
}
@nex3 nex3 added the bug Something isn't working label Apr 6, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant