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
Issue #28 fixes : bug due to the background-image property containing a : as per
:
background-image
background-image:url(http://foo.com)
In a similar class of bugs is an inline style containing a ;
;
background-image:url(data:image/png;base64,iVBORw0KGgoAAA)
Since styles are split on ; this breaks.
The text was updated successfully, but these errors were encountered:
Would you mind submitting a PR please with a test corresponding to the bug?
Sorry, something went wrong.
@aknuds1 submitted PR. Unit tests passing and tested within my app, LGTM.
No branches or pull requests
Issue #28 fixes
:
bug due to thebackground-image
property containing a:
as perIn a similar class of bugs is an inline style containing a
;
Since styles are split on
;
this breaks.The text was updated successfully, but these errors were encountered: