I just changed the version to the latest one, and when I run the getCssText()
of a style sheet, the font-family value is coming without the comas that
separate the different families in a same rule.
That was not happening in the previous version :(
Do you know how can I fix it?
I replaced the version because the last one was giving me error when I parse
an @import(), but now I'm having this issue.
Thanks in advance.
Martin Fox.-
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I just changed the version to the latest one, and when I run the getCssText()
of a style sheet, the font-family value is coming without the comas that
separate the different families in a same rule.
That was not happening in the previous version :(
Do you know how can I fix it?
I replaced the version because the last one was giving me error when I parse
an @import(), but now I'm having this issue.
Thanks in advance.
Martin Fox.-
To be more clear in my problem i give an example.
We have the attribute in a rule like:
anId {
font-family: arial, verdana, sans-serif;
}
When we make the toString() of the constructed CSSStyleSheet it is returning:
anId {
font-family: arial verdana sans-serif;
}
Thanks,