Subject: | properties that start with asterisk (*) are not supported |
Here is an example of valid CSS:
.mycls {
*display: inline;
*zoom: 1;
}
However, CSS::Tiny doesn't like it because the validation regex doesn't allow property names to start with '*'.
This could be fixed by changing the validation regex on line 58 (v1.19) from this:
/^\s*([\w._-]+)\s*:\s*(.*?)\s*$/
To this:
/^\s*(\*?[\w._-]+)\s*:\s*(.*?)\s*$/
This is what I am doing to fix it in CSS::Scopifier until this bug can be fixed in CSS::Tiny.