Skip to content
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

box-shadow not correctly rendered #156

Closed
paulrouget opened this issue Jan 29, 2016 · 2 comments
Closed

box-shadow not correctly rendered #156

paulrouget opened this issue Jan 29, 2016 · 2 comments

Comments

@paulrouget
Copy link
Collaborator

@paulrouget paulrouget commented Jan 29, 2016

<div style="height: 400px; width: 400px; margin: 100px; box-shadow: -80px -80px 80px black">
</div>

screen shot 2016-01-29 at 04 43 28

Script highlighting the blurring value issue:

<div style="height: 400px; width: 400px; margin: 100px; box-shadow: -80px -80px 0px black">
</div>

<script>
  var s = 0;
  setInterval(() => {
    s++;
    document.querySelector("div").style.boxShadow = `-80px -80px ${s}px black`;
    document.querySelector("div").textContent = s;
  }, 100);
</script>
@glennw glennw mentioned this issue Feb 2, 2016
15 of 15 tasks complete
@glennw
Copy link
Member

@glennw glennw commented Feb 5, 2016

@paulrouget Would you mind checking this again? I don't see the missing parts of the box shadow with current WR, if that's what you're referring to?

@paulrouget
Copy link
Collaborator Author

@paulrouget paulrouget commented Feb 5, 2016

Works for me now.

@paulrouget paulrouget closed this Feb 5, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.