-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
test(css/minifier): catch error in minifier #6222
Conversation
b3d53b4
to
1175899
Compare
e06d860
to
514bcf2
Compare
@@ -1,5 +1,3 @@ | |||
div[data-size="calc(3*3)"] { | |||
} | |||
|
|||
div:nth-child(2n + calc(3*3)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
calc
can't be used here, it is not allowed by spec here, so I remove this tests, because it is list of component values and we even parser this as Calc
color: hwb(90 50% 50%); | ||
color: hwb(90 50% 50% 0.2); | ||
color: hwb(90 50% 50% / 0.2); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid color syntax, I fix them
@kdy1 Ready to review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
swc-bump:
- dbg-swc
Description:
Catch errors to avoid crate broken tests cases
BREAKING CHANGE:
No
Related issue (if exists):
No