The CSS2.1 grammar is accompanied by a strong advisory to not parse CSS directly this way, "since it does not express the parsing conventions, only the CSS 2.1 syntax)."
Indeed, any parser that ignores these parsing conventions (as we have tried to do) runs into problems when dealing with pages containing errors or unknown constructs.
Therefore, we'd like our CSS2.1 ANTLR parser - which does not currently follow the forward-compatible and error-handling parsing conventions - to somehow use the parse tree generated by the basic grammar that does incorporate the parsing conventions. (The latter could perhaps be generated by another ANTLR parser.)
Is this a reasonable approach? Are there well understood techniques for doing this?
To reiterate, the goal is to produce a robust CSS2.1 parser that can handle errors and new constructs gracefully, in accordance with the CSS parsing conventions.