}
@Test
public void stylesheet() throws RecognitionException {
String crashingSelector = "p:not([class**=\"lead\"]) {\n color: black;\n}";
ANTLRParser compiler = new ANTLRParser();
ParseResult result = compiler.parseStyleSheet(crashingSelector, null);
//the -3 is correct, even if it seems like huge hack. It sort of is.
//RBRACE }; LBRACE {; RBRACKET ] and LBRACKET [ are (correctly thrown away)
//and one dummy node EMPTY_COMBINATOR is added during the translation.
//therefore there are -3 dummy nodes