Quote:
Originally Posted by theducks
RMSDK (at least on older devices) will barf on an invalid style
(the SPEC say it should ignore those. They did...by ignoring the whole stylesheet)
|
That's not precisely true. The RMSDK uses incorrect rules for skipping declarations that trigger
parse errors according to CSS specifications. As a result, unknown @ rules fail spectacularly (because it doesn't parse them correctly as an @ rule), as do rules that include unknown functions (keywords followed by parenthesized expressions) as part of their value, IIRC, because it doesn't correctly use parenthesis/brace matching until the semicolon that terminates the rule, or something.
However, plain-jane unknown rules are ignored correctly, in my experience, as are unknown constants, so "text-decoration-style: dashed;" should be ignored correctly by even older RMSDK versions.