-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CSS parser: incorrectly handing polybuild output #2483
Comments
Any solution for this? We're using polybuild and I'm having issues when doing the same thing. |
@JeremybellEU No worries. PRs don't run in Safari or IE because we run those on SauceLabs and keep the credentials encrypted. Travis only decrypts the credentials when the PR or branch is on the same origin. |
Most of the time, that should be enough. Styles are annoying though... |
Ugh, looks like this line https://github.com/Polymer/polymer/blob/master/test/unit/custom-style.html#L258 became |
Hm, could you maybe escape the |
Nope, that doesn't work. |
Urgh, maybe it is best to revert the PR for now and someone with Safari can investigate the issue. I can only guess at this point, since Safari can not be installed on Linux... It is now causes failed builds on subsequent PRs |
When Polybuild crushes element CSS and removes whitespace, custom property rules end up running into each other. Unfortunately, this causes our parser's regexing to start ignore rules. The issue can be seen when you have two
--var
in a row (one won't do it).putting as space in between properties works:
http://jsbin.com/wayoholaxi/edit?html,output - you'll see
top: 400px
is ignoredcc @azakus
The text was updated successfully, but these errors were encountered: