You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
The code in CSS validation does not send failing CSS node to the error manager. Having the node object can provide more information for richer error reporting (i.e. print parent node content, etc.)
The code in CSS validation does not send failing CSS node to the error manager. Having the node object can provide more information for richer error reporting (i.e. print parent node content, etc.)
Current code in places like processDeclaration:
errorManager.report(new GssError(ERROR_STR + declaration, location));
Change to something like:
errorManager.report(new GssError(ERROR_STR + declaration, location, declaration));
The text was updated successfully, but these errors were encountered: