We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
The following test case will fail as the parser does not parse this valid CSS correctly.
[Test] public void CssBackgroundSizeCoverCenterTest() { var snippet = "background-size : center / cover"; var property = ParseDeclaration(snippet); Assert.AreEqual("background-size", property.Name); Assert.IsFalse(property.IsImportant); Assert.IsFalse(property.IsInherited); Assert.IsTrue(property.HasValue); // Error - Is False Assert.AreEqual("center / cover", property.Value); // Error - Value is empty }
The text was updated successfully, but these errors were encountered:
PRs are welcome on this one.
Sorry, something went wrong.
PR #125 submitted
This is not a valid size. See https://developer.mozilla.org/en-US/docs/Web/CSS/background-size.
No branches or pull requests
The following test case will fail as the parser does not parse this valid CSS correctly.
The text was updated successfully, but these errors were encountered: