We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When using the @starting-style CSS at-rule, which is used to define starting values for properties set on an element, the parser crashes with a property missing ':' error. This issue can be consistently reproduced using the provided sample code.
@starting-style
property missing ':'
The parser should correctly process the @starting-style at-rule without errors.
The parser crashes and throws an error stating property missing ':'.
const cssTools = require("@adobe/css-tools") cssTools.parse(` @starting-style { body { background: orange } } `);
Here is a reproduction of the issue in a Runkit environment: https://runkit.com/jantimon/6658a0b8c7c7990008b1e447
The error encountered is:
The text was updated successfully, but these errors were encountered:
I created a fix in #319
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When using the
@starting-style
CSS at-rule, which is used to define starting values for properties set on an element, the parser crashes with aproperty missing ':'
error. This issue can be consistently reproduced using the provided sample code.Expected Behaviour
The parser should correctly process the
@starting-style
at-rule without errors.Actual Behaviour
The parser crashes and throws an error stating
property missing ':'
.Reproduce Scenario (including but not limited to)
Steps to Reproduce
@starting-style
CSS at-rule in a stylesheet.Platform and Version
Sample Code that illustrates the problem
Logs taken while reproducing problem
Here is a reproduction of the issue in a Runkit environment: https://runkit.com/jantimon/6658a0b8c7c7990008b1e447
The error encountered is:
The text was updated successfully, but these errors were encountered: