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

Improperly unprefixing -webkit-box-orient when in a @supports block #710

Open
blowery opened this issue Apr 3, 2024 · 0 comments
Open

Comments

@blowery
Copy link

blowery commented Apr 3, 2024

v1.24.1 is now removing the -webkit- prefix from -webkit-box-orient. Compare the output from v1.24.0 to 1.24.1.

Input

@supports (
    (display: -webkit-box) and (-webkit-box-orient: vertical) and (-webkit-line-clamp: 3)
  ) {
  .foo {
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  }
}

1.24.0

@supports (display: -webkit-box) and ((-webkit-box-orient: vertical)) and (-webkit-line-clamp: 3) {
  .foo {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}

1.24.1

@supports (display: -webkit-box) and (box-orient: vertical) and (-webkit-line-clamp: 3) {
  .foo {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant